Re: implementing algo

2008-12-26 Thread Jenda Krynicky
From: "Sharan Basappa" > Hi Jenda, Rob, Shawn, > > I am attaching a sample flowchart figure. > > Step1 and Step2 are the process steps and D1 and D2 are the decisions. > > Will this code translate to the foll in perl? > > do > { > do > { > step1 > } while (D1) > step2 > } while

Re: implementing algo

2008-12-25 Thread Mr. Shawn H. Corey
On Thu, 2008-12-25 at 19:15 +0530, Sharan Basappa wrote: > Hi Jenda, Rob, Shawn, > > I am attaching a sample flowchart figure. > > Step1 and Step2 are the process steps and D1 and D2 are the decisions. > > Will this code translate to the foll in perl? > > do > { > do > { > step1 >

Re: implementing algo

2008-12-25 Thread Sharan Basappa
Hi Jenda, Rob, Shawn, I am attaching a sample flowchart figure. Step1 and Step2 are the process steps and D1 and D2 are the decisions. Will this code translate to the foll in perl? do { do { step1 } while (D1) step2 } while (D2) What if D2 traces back to Step2 instead? How

Re: implementing algo

2008-12-24 Thread Jenda Krynicky
From: "Sharan Basappa" > I am implementing an algorithm that I have worked out in theory. The > algorithm is in the form of a flowchart. > The area where I am having problem is where the flow passes from a > lower decision block to higher one. > I can implement this using a do while block for such

Re: implementing algo

2008-12-24 Thread Rob Dixon
Sharan Basappa wrote: > > I am implementing an algorithm that I have worked out in theory. The > algorithm is in the form of a flowchart. The area where I am having problem > is where the flow passes from a lower decision block to higher one. I can > implement this using a do while block for such

Re: implementing algo

2008-12-24 Thread Mr. Shawn H. Corey
On Wed, 2008-12-24 at 20:10 +0530, Sharan Basappa wrote: > Hi, > > I am implementing an algorithm that I have worked out in theory. The > algorithm is in the form of a flowchart. > The area where I am having problem is where the flow passes from a > lower decision block to higher one. > I can impl

implementing algo

2008-12-24 Thread Sharan Basappa
Hi, I am implementing an algorithm that I have worked out in theory. The algorithm is in the form of a flowchart. The area where I am having problem is where the flow passes from a lower decision block to higher one. I can implement this using a do while block for such flow. The issue is when mult