A cyclic reference is established if object A holds a reference to B while B holds a reference to A.
0
votes
4answers
50 views
Trying to resolve circular reference error between my deque class and tree class
Could anyone help me resolve the circular reference errors I'm getting here.
I've created my own deque class which is used by the breadthFirst method of FibTree.
Below are the highlights from the ...
0
votes
1answer
31 views
How can I have cyclic or forward ReferenceField when using reverse_delete_rule in MongoEngine?
This code bombs:
from mongoengine import *
class Employee(Document):
name = StringField()
boss = ReferenceField("Employee", reverse_delete_rule = NULLIFY)
Heres the exception:
Traceback ...
2
votes
3answers
356 views
C++ ERROR: forward declaration of 'struct…?
cyclical inclusion problem
I forward declare one of the classes in the header of the other in an attempt to solve their cyclical inclusion. Here are my two files:
First file:
#pragma once
#include ...
2
votes
1answer
83 views
Custom JSON Serialization of object with “self-creating” property ends in infinite loop
In a project(in C#) that I am working on I have to use a JSON representation that also contains methods of serialized object. That is the reason why I have to implement my own serializer. The ...
0
votes
1answer
68 views
How to avoid cycling call in Objective C?
Title itself is enough for my question I guess. However I will explain further here, consider I have a two view controller A and B. A is base and it is pushing B, In one situation I want the A to be ...
6
votes
4answers
185 views
Why is there no cyclic layout issue for classes in C#?
public struct Unit
{
Unit u;
}
Causes:
Struct member 'Unit.u' of type 'Unit' causes a cycle in the struct
layout.
But
public class Unit
{
Unit u;
}
compiles. I understand the ...
9
votes
2answers
231 views
Data structures with cyclic dependencies in haskell
I'm trying to implement simple parser in haskell using parsec library (for learning purposes). So I wrote bunch of data structutes and related functions like this:
data SourceElement
= ...
0
votes
0answers
29 views
Why are cyclic dependencies evil?
I'm looking for concrete examples or elegant explanations of why cyclic dependencies are evil. Are there times when it makes sense to have to objects referencing each other (like order and line ...
1
vote
0answers
38 views
Object cloning with cyclic reference chain
I'm running some operations on a graph in memory, which modify the graph itself. I need to repeat these operations some number of times, and subsequent repetitions must work on a fresh copy of the ...
0
votes
3answers
116 views
c++ include avoid cyclic references
I have 3 classes: A, B and C. C is #includeed by B, and B is #included by A. In class C i have defined a handler for a button, and when the button is pushed, C will PostMessage to object A. If i ...
0
votes
2answers
100 views
Relationships loop with Core Data
I had a conceptual problem with Core Data.
I have an entity called OBJ which has an OBJ entity in a relationship. I get very eloquent messages like "An error occured." when I test my model.
For each ...
1
vote
1answer
154 views
shared_ptr and cyclic references
I was trying with the cyclic references for boost::shared_ptr, and devised following sample:
class A{ // Trivial class
public:
i32 i;
A(){}
A(i32 a):i(a){}
~A(){
...
1
vote
1answer
172 views
Python cyclic imports fail when using from package import module syntax [duplicate]
Possible Duplicate:
Cyclic module dependencies and relative imports in Python
Consider the following example of cyclic imports in python:
main.py:
from pkg import foo
pkg/__init.py__:
...
1
vote
2answers
1k views
Maven says I have a cyclic reference in multi-module project but can't figure out why
I have a multi-module project that looks like this:
module1
pom.xml
module2
pom.xml
pom.xml
The pom.xml in module2 has a dependency on module1.
When I run mvn clean compile I get the ...
0
votes
3answers
244 views
How to resolve this kind of Circular dependency in Python
I came across some situation like shown below, where each class need the other class and it create the cyclic dependency. I came across this type situation while wrapping some c code using ctypes.
...
1
vote
1answer
102 views
Maven cyclic dependency when compling tests only - how to resolve easily?
I am working on modernizing an older project to be used with Maven. The project is very large and has around 30 modules in it.
As far as the main source code is concerned, I managed to get all of it ...
0
votes
1answer
86 views
Cyclic dependency error when decorating using Ninject 3.0 conventional bindings
Please see the sample code below. Its an over simplified scenario to demonstrate a problem I am encountering when binding using the WhenInjectedInto method. This has always worked with the earlier ...
0
votes
2answers
74 views
Cyclic Constructors
Suppose structs A and B are singleton structs defined as follows:
struct A
{
B& b_;
static A& shared_a() { ... }
A() : b_(B::shared_b()) { ... }
};
struct B
{
A& a_;
...
3
votes
1answer
56 views
Cyclic Template
Suppose template class A is defined as follows:
template <typename T>
class A
{
B<T> b;
};
Suppose template class B is defined as follows:
template <typename T>
class B
{
...
1
vote
2answers
221 views
cyclic dependency - structures and function pointer referencing each other
I am not able to compile the following program because of cyclic dependency between a structure and a function pointer.
// fnPtr.cpp : Defines the entry point for the console application.
//
...
9
votes
4answers
350 views
What is a reference cycle in python?
I have looked in the official documentation for python, but i cannot seem to find what a reference cycle is. Could anyone please clarify what it is for me, as i am trying to understand the GC module. ...
0
votes
1answer
131 views
Cyclic references using POCO entities and Silverlight services
I have created several POCO entities that have relationships between them. For instance, the "Individual" entity has a OneToMany relationship with a "Collection" entity. Here is how I defined them :
...
0
votes
1answer
232 views
django: register listeners in models.py and cyclic import problems
I'm working on some signal listeners, which creates records from a model. And in django docs it is said listeners should be registered in models.py. Because the listeners are quite big in lines, I ...
1
vote
4answers
178 views
How can I detect or avoid cyclic references with std::shared_ptr?
I know that there is weak_ptr to break the cycle, but that is a fix, after the problem is discovered. Is there a pattern or tool that can be used to either detect or avoid cyclic referencing?
9
votes
4answers
741 views
Cycle in the struct layout that doesn't exist
This is a simplified version of some of my code:
public struct info
{
public float a, b;
public info? c;
public info(float a, float b, info? c = null)
{
this.a = a;
...
0
votes
1answer
141 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 ...
2
votes
2answers
146 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
168 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 ...
1
vote
2answers
245 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
295 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 ...
4
votes
1answer
653 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 ...
7
votes
4answers
479 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 ...
2
votes
2answers
162 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 ...
3
votes
1answer
201 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 ...
2
votes
2answers
1k 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
136 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 ...
0
votes
1answer
135 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 ...
1
vote
1answer
733 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
3answers
1k 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 ...
3
votes
4answers
228 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, ...
55
votes
4answers
11k views
Circular (or cyclic) imports in Python
What will happen if two modules import each other?
To generalize the problem, what about the cyclic imports in Python?


