Tagged Questions
The cyclic tag has no wiki summary.
9
votes
2answers
257 views
Cyclic module dependencies and relative imports in Python
Suppose we have two modules with cyclic dependencies:
# a.py
import b
def f(): return b.y
x = 42
# b.py
import a
def g(): return a.x
y = 43
The two modules are in the directory pkg with an ...
8
votes
3answers
115 views
Why is Java prohibiting inheritance of inner interfaces?
I.e. why is the following "cyclic dependency" not possible?
public class Something implements Behavior {
public interface Behavior {
// ...
}
}
Since interfaces don't reference the ...
8
votes
6answers
516 views
finding the longest road in a Settlers of Catan game algorithmically
I'm writing a Settlers of Catan clone for a class. One of the extra credit features is automatically determining which player has the longest road. I've thought about it, and it seems like some slight ...
7
votes
2answers
613 views
Is there a standard Cyclic Iterator in C++
Based on the following question: Check if one string is a rotation of other string
I was thinking of making a cyclic iterator type that takes a range, and would be able to solve the above problem ...
6
votes
2answers
162 views
Are clojure function cyclic dependencies specifically disallowed by design, or is it just a reader behaviour?
If I do the following in clojure
(defn sub1a [a]
(cond
(= a 0) 0
true (sub1b (- a 1) )))
(defn sub1b [a]
(cond
(= a 0) 0
true (sub1a (- a 1) )))
(println (sub1a 10))
I get the ...
6
votes
1answer
2k views
How do find the longest path in a cyclic Graph between two nodes?
I already solved most the questions posted here, all but the longest path one. I've read the Wikipedia article about longest paths and it seems any easy problem if the graph was acyclic, which mine is ...
6
votes
3answers
840 views
Avoiding indirect cyclic references when using shared_ptr and weak_ptr
I'm currently putting together an application that relies heavily on shared_ptr and everything looks good so far - I've done my homework and have a pretty good idea of some of the pitfalls of using ...
5
votes
2answers
70 views
Search for cyclic strings
I am looking for the most efficient way to store binary strings in a data structure (insert function) and then when getting a string I want to check if some cyclic string of the given string is in my ...
5
votes
2answers
230 views
How to remove cycles in an unweighted directed graph, such that the number of edges is maximised?
Let G be an unweighted directed graph containing cycles. I'm looking for an algorithm which finds/creates all acyclic graphs G', composed of all vertices in G and a subset of edges of G, just small ...
5
votes
3answers
221 views
checking whether mutable list has cycle in ocaml?
I'm trying to write a function to test whether a mutable list in Ocaml contains a cycle or not (that is, has a reference to itself and repeats continuously.
My list is defined as type 'a m_list = Nil ...
5
votes
2answers
160 views
C# : xml serialization of nodes with cyclic links
I have a class Node something like this :
class Node {
IEnumerable<Node> inputs;
}
Which basicly defines a simple graph.
I want to serialize my graph to a human-readable form, so normally ...
5
votes
9answers
448 views
The Elegant way to handle Cyclic Event in Java?
i think this not a specific problem to me; everybody might have encountered this issue before.
To properly illustrate it, here's a simple UI:
As you can see, those two spinners are controlling a ...
4
votes
1answer
434 views
How to implement a cyclic UIScrollView?
How to implement a cyclic UIScrollView? That is to say, when you scroll to the very left item then the UIScrollView will show the very right one. Any help would be appreciate.
4
votes
3answers
2k views
How to detect if a directed graph is cyclic?
How can we detect if a directed graph is cyclic? I thought using breadth first search, but I'm not sure. Any ideas?
4
votes
4answers
734 views
cyclic dependency between header files
I'm trying to implement a tree-like structure with two classes: Tree and Node. The problem is that from each class I want to call a function of the other class, so simple forward declarations are not ...
3
votes
2answers
142 views
C# Drawing Libraries
I'm looking for a library which will enable me to visualize some xml entities I have, and manipulate them graphically (something similar to a UML design package, but simpler), like a cyclic flow ...
3
votes
2answers
87 views
using cut for cyclic data
hi
i am trying to analyse wind data using the 'cut' command,
i want to set 16 wind directions
how can i cut directions 348.75 till 11.25 to a "0" label?
thank you
eliav
3
votes
1answer
301 views
CMake cyclic dependency error when custom library name is the same of a system library
i have the following problem.
I'm writing a CMakeLists.txt to build a C++ project of mine, which is composed of
libhybris.so : A shared library with some exported functions.
hybris : An executable ...
2
votes
3answers
54 views
Calling member method of cyclic dependent classes
I'm trying to setup a simulation program. The simulation runs for a number of steps, and the simulation class should call ::step() of a bunch of different classes, one of them is the _experiment ...
2
votes
1answer
72 views
MySQL traverse graph data and get non-cyclic path
This one is a hard one for me to solve, basically I have data in a table looking like this:
id a b
1 2 4
2 4 2
3 5 2
4 2 5
5 6 2
6 2 6
7 8 6
8 6 8
9 5 6
...
...
2
votes
2answers
114 views
removing cycles from cyclic/mutable list in ocaml?
I'm not sure how to remove the cycles from a mutable list of type:
type 'a m_list = Nil | Cons of 'a * (('a m_list) ref)
E.g. if I had a list 3,2,2,1,2,1,2,1,..... I would want to get a 3,2,2,1.
...
2
votes
2answers
505 views
Generating cyclic permutations / reduced Latin Squares in Python
Was just wondering what's the most efficient way of generating all the cyclic permutations of a list in Python. In either direction. For example, given a list [1, 2, 3, 4], I want to generate either:
...
2
votes
5answers
813 views
Database design: circular references
I have three database tables:
users
emails
invitations
Emails are linked to users by a user_id field.
Invitations are also linked to users by a user_id field
Emails can be created without an ...
2
votes
2answers
594 views
How does one avoid a cyclic redirect when writing a facebook application using pyfacebook and google app engine?
I'm trying to write my first application for Facebook using
python and pyfacebook hosted on Google App Engine. The problem I'm facing is
that of cyclic redirects. Firefox dies complaining "This ...
1
vote
3answers
67 views
Attempting to define two dependable structures in C
I am trying to define two structures in C when the second struct uses the first as an array member and has two pointer members of itself.
Visual Studio does not like my code:
syntax error : '}'
...
1
vote
1answer
171 views
Problem with cyclic dependencies between types and functions from different files in F#
My current project uses AST with 40 different types (descriminated unions) and several types from this AST has cyclic dependency.
The types are not so big, therefore I put them in one file and ...
1
vote
3answers
630 views
Excel UDF calculation should return 'original' value
I've been struggling with a VBA problem for a while now and I'll try to explain it as thoroughly as possible.
I have created a VSTO plugin with my own RTD implementation that I am calling from my ...
1
vote
1answer
56 views
Serializing a graph with bidirectional links, (dll) imported types and versioning ..?
Okay, I've asked some questions before on SO about serializing, but I'm still stuck - so I figure I'll just spit out my entire case instead of sub-problems in the hope someone can point my nose in the ...
1
vote
2answers
133 views
How to hash and check for equality of objects with circular references
I have a cyclic graph-like structure that is represented by Node objects.
A Node is either a scalar value (leaf) or a list of n>=1 Nodes (inner node).
Because of the possible circular references, I ...
1
vote
2answers
562 views
Finding an element in a cyclic group of prime order
Greetings!
How do I check if an element a belongs to a specific cyclic group G of prime order, given the generator? Right now i simply generate all the elements in the group, save them into a ...
1
vote
3answers
473 views
sql closed loop relations; what could go wrong?
I am working with a database with the following design. I read it is not a good practice to have closed loops in a database design, and i have more than one. But i cannot remember why. So not sure ...
1
vote
4answers
198 views
Table design for cyclic dates
In my application users should be able to define dates when they are available. Ie. user joe may define he's available:
- at every monday, wednesday and sunday between 15:00 and 17:00 from 1.09.2009 ...
1
vote
2answers
739 views
How can you re-arrange items in an array based on its dependencies? and also detect any cyclic dependency
Given the type:
class Field{
public string Name{get;set;}
public string[] DependsOn{get;set;}
}
Let's say I have an array of Field items:
List<Field> fields = new ...
0
votes
0answers
19 views
How to set weight to edges in a Directed Cyclic Graph?
Here is what I wanted:
In a Directed Cyclic Graph,
Given any two nodes, how to print all the paths between them?
I used the DFS, which is good. The problem is the Cyclic caused some nodes to ...
0
votes
2answers
43 views
Can I create a “simple” Cyclic Redundancy Check program in Python?
I am quite green in the ways of Python programming and was tasked with creating a simple program that ran a CRC check. Can anyone suggest a good start point on which modules to use/read up on? I ...
0
votes
0answers
95 views
Fast cyclic array
I have to implement a cyclic array. Memory use doesn't matter, I just need to do arithmetic as little as possible. My best shot is to do this:
Create array T[L]
Create array S[L+2]
Fill S like this
...
0
votes
2answers
40 views
[data-structure]: the tail pointer of cyclic queue
In the implementation of Cyclic Queue, the tail pointer points to the position 1 past the last element in the queue:
|1|2|3|4|5| | |
^ ^
front tail
why?
I think I can implement the ...
0
votes
2answers
73 views
Cyclic dependency in Maven, chickens and eggs
This gives me headache...
I have a project called 'talktome', with no runtime dependencies.
Also I have project 'talktome-tools', which depends on 'talktome'.
No problems, until I realize that the ...
0
votes
1answer
288 views
reverse engineering many to many tables in hibernate for JAXWS
Im running web services behind JBoss. The stack has hibernate and we use it to derive object model from the relational model. When I have many to many relationships I try and use a bridging table on ...
0
votes
1answer
724 views
JAXB cyclic reference avoidance using @XmlIDREF
I'm using JAXB in a web service with some slightly complex objects. One of the objects, Sensor, has a list of other objects it can communicate with, which necessarily can include itself (behavior ...
0
votes
1answer
136 views
create a cyclic auto increment column in mysql
I have a table that's used to store some temporary bookkeeping stuff. It needs a unique id for each row, so I used an autoincremented column. However, after a while the column reaches it's max value ...
0
votes
2answers
106 views
Backend module needs URLs from presentation layer - how to avoid cyclic dependency?
URL generation in my web app is in charge of the presentation layer.
Now consider another module sending out messages containing URLs. (Not neccessarily triggered from presentation).
However, the ...
-1
votes
1answer
15 views
Extracting Trees/DAG from a cyclic graph
Given a directed cyclic graph, how do I get various DAGs/trees, which are representative of the input graph? In effect, I'd like to extract various trees from the given circuit (directed & cyclic) ...
-1
votes
2answers
254 views
Cyclic and acyclic data structures
What is the difference, can you give me examples, thanks in advance