Top "Circular-dependency" questions

circular dependency is a relation between two or more modules which either directly or indirectly depend on each other to function properly.

Detecting circular imports

I'm working with a project that contains about 30 unique modules. It wasn't designed too well, so it's common that I …

python circular-dependency
Circular Dependency in C++

The facts: I have two predominant classes: Manager and Specialist. There are several different types of Specialists. Specialists often require …

c++ design-patterns circular-dependency
Circular C++ Header Includes

In a project I have 2 classes: // mainw.h #include "IFr.h" ... class mainw { public: static IFr ifr; static CSize=100; ... }; // IFr.…

c++ static include circular-dependency
How to solve circular dependency in Require.js?

Basically, the idea is that "sub" module creates an object, and that object should be part of a utilities library …

javascript requirejs amd circular-dependency commonjs
Injecting $http into angular factory($exceptionHandler) results in a Circular dependency

When I try inject $http into an overridden factory I get the error: Uncaught Error: [$injector:cdep] Circular dependency found: $…

angularjs circular-dependency
forward declaration with vector of class type - pointer to incomplete class type not allowed

I have two classes, foo and bar. foo.h #includes bar.h and contains a std::vector of pointers to …

c++ circular-dependency forward-declaration
Circular Dependencies in Ruby

Let's say we have two classes, Foo and Foo Sub, each in a different file, foo.rb and foo_sub.…

ruby require circular-dependency
Resolving Clojure circular dependencies

I'm working on some Clojure code that has some circular dependencies between different namespaces and I'm trying to work out …

clojure circular-dependency
Avoid Circular Dependency

I am developing a travel management application. The design in question is something like following : Each person in a tour …

database-design hibernate-mapping circular-dependency erd class-table-inheritance
sqlalchemy.exc.CircularDependencyError: Circular dependency detected

The business logic - One Category may have multiple (1:M) attributes, like Category "Memory" could have attributes Speed, Size, Type …

python sqlalchemy circular-dependency