In computer science, control flow is the order of instructions when they are executed.

learn more… | top users | synonyms (1)

1
vote
2answers
51 views

How can I elegantly turn user input into a variable name in Perl?

I want to use input from the user to pick a hash to operate on. Currently, I have this cumbersome code: my ( %hash1, %hash2 ); print "Which hash to work with (1 or 2)? "; my $which = <>; chomp ...
0
votes
2answers
42 views

Control flow: Run two asynchronous array maps

I have two functions that are asynchronous – they accept a function as a parameter which it called when it is done (callback). function a(item, cb) { someAsyncOperation(function () { cb(item) ...
3
votes
2answers
88 views

Strange control flow

I'm working on a framework in C# that will depend on pluggable components implemented as classes inheriting a base class. In order to make the components as simple as possible, I am working on some ...
0
votes
1answer
40 views

Do ternary operators need an else block in all cases?

Suppose I have a code like this: i=1; if(i===1) { i++; } This code does have a if block but no else block. So,my question is , how to accomplish the same thing with the ternary operator. I had ...
0
votes
1answer
15 views

Binding identical events on newly appended AJAX elements

I'm trying to port an infinite scrolling site to mobile devices, disabling the AJAX scroll and replacing it with AJAX "more" buttons. I'm having problems understanding how to bind the initial click ...
9
votes
2answers
149 views

Why are simple for loop expressions restricted to integer ranges?

According to the F# spec (see §6.5.7), simple for loops are bounded by integer (int aka int32 aka System.Int32) limits start and stop, e.g. for i = start to stop do // do sth. I wonder why the ...
0
votes
0answers
69 views

Python tools for control flow graph extraction

I am interesting in generating of control flow graph for Python functions and methods. I am interesting in python(not c/c++) based tools for better integration with my other tools. Also i am ...
0
votes
2answers
78 views

What is your preferred way to clean a while loop like this? [closed]

I'm a bit OCD about my code and wondered how other people structure the following sample control flow. I haven't found anything that passes my "pretty" code test. var records = ...
2
votes
1answer
61 views

Javascript: How to control flow with async recursive tree traversal?

I need to recurse over a tree to perform operations on specific nodes using async operations. How can I control flow so I have access to the nodes when it's done? Here's an example situation: data ...
2
votes
1answer
49 views

How is the AspectJ cflow pointcut implemented?

How does AspectJ check if the execution is happening in the control flow of, say, a method? It could be a very useful insight, to be able to implement the functionality on its own, outside of an ...
1
vote
5answers
140 views

How can I keep my thrown exception for the finally block?

I have the following code: try { /* etc. 1 */ } catch (SomeException e) { /* etc. 2 */ } catch (SomeException e) { /* etc. 3 */ } finally { /* * do something which depends on ...
0
votes
1answer
35 views

Does CoffeeScript have simplified “and”, “or” operators?

Could it be simplified in CoffeeScript: redisSETNXReply.toString() == '1' or redisSETNXReply.toString() =='0' to something like: redisSETNXReply.toString() == '1' or '0' ?
0
votes
2answers
146 views

Building graph in Java [closed]

I want to build a control flow graph (CFG) in Java. The nodes and relations (UML relations) between nodes are given as an input and the output should be a simple graphical representation of the full ...
0
votes
1answer
54 views

Possible ways to check if a routine can run (and run it) in C#

I want to know how can I check for pre-requisites of a routine when I call it, so that it might execute or notify its non-executability. Language is C#. I am implementing a Pipeline design-pattern ...
1
vote
2answers
39 views

conditionally executing a callback

What's the best way to solve the following control flow niggle: I only want to call getSomeOtherData if someData is equal to some value / passes some conditional test In both cases I always want to ...
1
vote
2answers
45 views

Is it possible to make this pattern more DRY?

I've run into this a few times: try { if (condition()) { return simpleFunction(with, some, args); } else { return complexFunction(with, other, args); } catch (something) { // ...
3
votes
1answer
53 views

Simplifying Ruby control flow when defining variables

I'm defining three variables on a Rails app's page: if current_user if Vote.where(:user_id => current_user.id, :post_id => post.id, :direction => 0).count > 0 active = ' ...
0
votes
0answers
76 views

How-to rewrite a binary file or modfiy its control flow graph

Essentially I want to rewrite a binary file to perform additional tasks regarding its actual tasks. Regarding binary rewriting the process seems to be following: Create a Control Flow Graph from an ...
4
votes
2answers
226 views

Compute ingestible control flow graph from source code

I know that there are ways to automatically generate a CFG (C ontrol F low G raph) from source code. However, from what I understand, those methods give me a visual graph - an image. I can't really ...
0
votes
7answers
117 views

How to check if(Object) in Java?

I have a code in Java: for(Iterator it = c.getArrayList().iterator(); it.hasNext(); ) { Object i = it.next(); // Here I have an error, i is not a boolean if (i) { ...
3
votes
2answers
151 views

Unreachable statement error using while loop in java [duplicate]

Possible Duplicate: Why is this code giving an “Unreachable Statement” error? This seems very easy question, I found this question in one book. If anyone help me to figure out why I'm ...
0
votes
1answer
480 views

Controlling the flow in SSIS package based on a condition

Is there a way to conditionally (through a script task or anything else), control the flow of program in SSIS? Currently I have a package that would create 5 different excel sheets (through Execute ...
2
votes
2answers
176 views

graph-tool: Draw text on edges

for my thesis I need to draw some probabilistic control flow graphs. i.e. control flow graphs with probabilities depicted on the edges. I found graph-tool which seems quite useful, since it can use ...
0
votes
0answers
55 views

Exceptions : Unstructured or Structured flow of control?

Would the generation/reception of an exception (throw/try-catch-statements) be considered as an unstructured or structured control statement? What is the exact definition of structured/unstructured ...
0
votes
1answer
104 views

Hadoop data and control flow

I'm writing a Hadoop application but it seems that I have misinterpreted how exactly hadoop works. My Input files are tiles of a map, named according to the QuadTile principle. I need to subsample ...
0
votes
2answers
121 views

execute multiple processes from a master process

I want to create multiple processes from one master process. I know I want to use a function from the exec family, but it does not seem to be preforming in the way I intended it to. It seems that ...
1
vote
1answer
82 views

Testing for 0 after gets

Hey I have a snippet of assembly code that does not make sense to me .text:004016C5 prompt_uid: ; "[ User %d ]\t" .text:004016C5 mov [esp+0Ch+var_C], offset aUserD .text:004016CC ...
0
votes
1answer
80 views

Statements after Switch being skipped

I may be having a senior moment here (at 22 years old), but I can't figure out why C# is skipping a statement I have included after a switch. The code goes as follows: switch (shape) { case ...
1
vote
2answers
84 views

Using a class dictionary to map to instance methods in Python

I have a long if-elif chain, like this: class MyClass: def my_func(self, item, value): if item == "this": self.do_this(value) elif item == "that": ...
0
votes
1answer
101 views

what information we can get from a control flow graph?

I have got a control flow graph of a trace of a C program(executed in a VM) which is highly complicated.I want to know what information can i extract if i have a CFG of a program trace apart from ...
2
votes
4answers
889 views

Making a java quiz and repeating a incorrect answer?

Im trying to create a quiz so that it asks you a question of a multiple choice, though i cant seem to figure out on how to loop it back to the incorrect question.. Im still kind of new to java ...
1
vote
1answer
304 views

Parse and create an NSAttributedString when an UITextView's text changes

I'm trying to parse certain parts of the string when a user types into an UITextView or the setText: method is called, and then setting an NSAttributedString back into the text view. However in my ...
0
votes
1answer
209 views

async control flow in javascript

I'm writing a browser extension for chrome that uses Web SQL for local storage. The code for both of these components seems to heavily rely on async operations. I have a good understanding of ...
0
votes
0answers
136 views

Dyninst 7.0.1 on windows - application crashes

I'm using DyninstAPI to recover call-graphs and control-flow graphs in a project about graph isomorphism over call-graph binary. I give a try to DyninstAPI because it is open-source and looks very ...
2
votes
4answers
199 views

finally working in java before stackoverflow with a recursive loop in main()

class exception1 { public static void main(String s[]) { String v[] = new String[2]; try { main(v); System.out.println(5 / 0); } catch ...
0
votes
1answer
251 views

How to use methods containing mongoose functions with control flow frameworks (e.g. Async or Step)

I am struggling a little with how to call asynchronous functions in a serial manner. In particular, functions which incorporate mongoose calls to the database. I have a class definition which ...
1
vote
2answers
112 views

what is wrong with my if -condition?

So I've been trying to figure out what is wrong with my if-condition, but I am getting nowhere. I am still new to R, so maybe I am not understanding some very basic concept here? I have a dataframe ...
3
votes
3answers
129 views

Please explain: Line skipped after for loop?

I'm trying to do my first baby steps with C++. Can somebody explain why this does not work the way I'd expect? #include <iostream> #include <stdio.h> using namespace std; int main (int ...
2
votes
1answer
121 views

Vim: Change colour depending on indentation/control flow depth?

In vim, is it possible to change the background colour of the line depending on the depth of the control flow, or of the indentation (which ever is easier)? I seem to remember seeing such a feature in ...
4
votes
3answers
824 views

What is a good way to exit a node.js script after “everything has been done”

My node.js script reads rows from a table in database 1, does some processing and writes the rows to database 2. The script should exit after everything is done. How can I know if everything has ...
7
votes
5answers
1k views

IEnumerable foreach, do something different for the last element

I have an IEnumerable<T>. I want to do one thing for each item of the collection, except the last item, to which I want to do something else. How can I code this neatly? In Pseudocode foreach ...
0
votes
3answers
111 views

How to go out of the conditional IF statement? Return doesn't work correctly

I have an example of a class. It creates a new card and puts it into the array. I want to control the number of cards and leave the flow if the number of cards is more than 54: public class Card { ...
1
vote
1answer
132 views

Returning/Stopping the execution of a function on a keypress in Java

I have a certain function in my program that I want to stop on the press of a key. I have a native keyboard hook set up for that purpose. Right now, I call System.exit(0) when that key is detected. ...
0
votes
1answer
133 views

Issue using step (control flow library) and mongoose

If I query for all the documents in a collection the normal way, I have no issues: https://gist.github.com/2562954. The output of this is found docs [] However, if I introduce Step ...
5
votes
2answers
175 views

Trouble in understanding control flow in python class (in a google app engine)

Guys, I'm having some trouble in understanding control flow in python class, i.e., what is happing with the code step by step. Given the short code bellow, I'd like to know: when the class MainPage is ...
3
votes
1answer
391 views

Practical differences between control flow graph and call (flow?) graph?

Wikipedia has a definition for a control flow graph. I've also heard terminology thrown around referring to 'call (flow?) graph', but can't find any relevant resources. What is the relationship ...
0
votes
5answers
607 views

String Arrays and how to loop them

I was wondering if it is possible to make a loop for an array of strings that i want to evaluate in my code. I want to do more than one binary number at a time. So far I have this working correctly, ...
0
votes
6answers
260 views

Why two while loops one after the other (not inside the other) in Python don't work?

I wrote the code below and I was expecting that, when the first loop ends and doesn't return False, the flow would follow to the second while loop. However, the flow skips the second while loop and ...
4
votes
2answers
478 views

Access a parent class in an OOP correct way

I just started programming OOP and I'm running into a scope problem. In the following project, I have a masterClass called App. The App-class has Screens:Screen-class and a Navigation-class as it's ...
8
votes
3answers
726 views

Node.js control flow: callbacks or promises?

I know there are many control flow libraries for node.js. Some of them let one chain async functions with callbacks (like async, asyncblock, etc), the others use promise concept (Q, deferred, futures, ...

1 2 3