Tagged Questions

A cyclic reference is established if object A holds a reference to B while B holds a reference to A.

learn more… | top users | synonyms

19
votes
5answers
4k views

Python: Circular (or cyclic) imports

What will happen if two modules import each other? To generalize the problem, what about the cyclic imports in Python.
5
votes
4answers
223 views

How to initialize and “modify” a cyclic persistent data structure in Scala?

I have searched and found some info on this topic but the answers are either confusing or not applicable. I have something like this: class Thing (val name:String, val refs:IndexedSeq[Ref]) class ...
4
votes
1answer
184 views

SQL SELECT to find cyclic references in father-ID-organized tree?

"Fun" with cyclic references: Suppose I have a table ELEMENTS which contain a hierarchy of elements, modeled by a father ID. The father ID field is null for the root. All other records have a ...
3
votes
1answer
119 views

endless loop on code analysis with FxCop Introspection

I'm trying to write a custom FxCop code analysis rule that will warn developers from methods containing too deeply nested code blocks, and will urge them to re-factor out the mess. ex. I'm trying to ...
3
votes
4answers
185 views

A Class modelling /design query

How would I model such a situation? How should the database be designed? What classes should I have? Problem Statement: Each employee belongs at least to one project, each project has many tasks, ...
2
votes
2answers
90 views

Cyclic dependencies- always wrong?

1.I would like to know if the following structure is incorrect, what is the reason, and what is the solution for that: Assume I have implemented a client for net game The client has 2 main packages: ...
2
votes
1answer
87 views

Get around 3rd party cyclic dll dependencies?

I am attempting to access text in a TE Edit (from ter32.dll) in a 3rd party application. (first post on this here) I looked through the API and tried to dynamically load the dll in order to access a ...
2
votes
2answers
96 views

Cyclic function/type dependency in F#

I have a question about the best way to go about the following I Have a class B, I have a combinator on B, let foo : B -> int. I want the class B to have the combinator encapsulated as a method, so ...
2
votes
2answers
259 views

C++ cyclic inclusion issue

I have this file logger.hpp: #ifndef _LOGGER_HPP_ #define _LOGGER_HPP_ #include "event.hpp" // Class definitions class Logger { public: /*! * Constructor */ Logger(); /*! ...
1
vote
2answers
130 views

How to refactor to avoid cyclic dependencies when methods are recursive?

I have written code to cast the object to the required type. And if the required type is a custom class object and it has another object we need to cast it recursively. BTW: I will know that I need to ...
1
vote
2answers
127 views

WCF Ria Services and Cyclic references

I'm using a legacy database that has some cyclic references. When I consume my Ria service from a SL4 client. (generated entities through my ORM mapper) I get the following error: There was an error ...
1
vote
2answers
102 views

Data model, cyclic references

I have the following data structure for storing meridians and parallels. Each cartographic point stores: A] geographic and spatial coordinates, cartographic distortions, etc. B] pointer to ...
1
vote
0answers
165 views

Get empty objects over WCF with entity framework

I've a WCF Service, that uses entity framework (with POCO objects). One methods returns a list of users. It was working correctly, but another method cannot insert anything because the database ...
1
vote
1answer
427 views

Cyclic reference in a database table

I am quite ashamed to ask this, but recently there has been a situation where I need to create a single table for three different types of banking entities that are related to each other. Let me ...
1
vote
4answers
634 views

How to do cleanup reliably in python?

I have some ctypes bindings, and for each body.New I should call body.Free. The library I'm binding doesn't have allocation routines insulated out from the rest of the code (they can be called about ...
0
votes
1answer
60 views

MongoDb C# Driver support Cyclic references?

I was looking at porting a small side project over to use Mongo, as it was getting more and more time consuming using Nhibernate for the current scenario. I gave NoRM a try originally, and that had a ...
0
votes
1answer
101 views

Model-Controller cyclic reference/design problem

I have a CoreData entity X, and controllers for this entity, XController. Now there's another entity, XGroup, containing a collection of X entities, and a XGroupController. Now the problem is that ...