Tagged Questions
The cyclical tag has no wiki summary.
9
votes
13answers
2k views
What is a cyclic data structure good for?
I was just reading through "Learning Python" by Mark Lutz and came across this code sample:
>>> L = ['grail']
>>> L.append(L)
>>> L
['grail', [...]]
It was identified as a cyclic data structure.
...
2
votes
1answer
100 views
Plot density of periodic function
I've got a vector that represents the times (in seconds past midnight) that a bunch of events happened, and I want to plot the density of those events through the day. Here's one way to do that:
rs ...
2
votes
3answers
487 views
how to compile and run interdependent plugin jars
I have to build two eclipse-plugin projects into two separate jars with each one dependent on the other for compiling. Eclipse IDE complains about "cyclical dependency...".
How do I build these plugin ...
1
vote
1answer
59 views
How to create a many-to-many relation ship without CASCADE in Entity Framework 4.1?
I spent already few days on this issue and I help some of you could help me.
I am making an MVC3 web app using Entity Framework 4.1. The problem is that I have a cyclical reference and I get an ...
1
vote
1answer
54 views
Dealing with a cyclical reference in EF 4
I have a legacy database design that I'm trying to work around with EF 4. Essentially, I have two tables that reference each other causing issues when trying to add new entries.
My structure is this:
...
1
vote
0answers
41 views
CyclicalReferenceException while using Betwixt
I have cyclical references in my hibernate domain model which is causing Betwixt to fail. I don't want to change my domain model. How do I change Betwixt to ignore the cyclical reference?
0
votes
3answers
715 views
SQL 2008 - Getting around cyclical foreign key errors when trying to generate insert data scripts
I am trying to generate some insert scripts using the SQL Server 2008 Script Wizard. Upon generating the scripts, I get the following error:
"The selected database contains foreign keys that create ...