Skip to content

Commit

Permalink
fix(validator): temporarily disable cyclic dependency checks
Browse files Browse the repository at this point in the history
Very slow for large models having transitive dependencies, see sbmlteam#374
  • Loading branch information
eltix committed May 21, 2024
1 parent fee56c9 commit 3a62b68
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sbml/validator/constraints/AssignmentCycles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,12 @@ AssignmentCycles::check_ (const Model& m, const Model& object)
// check for self assignment
checkForSelfAssignment(m);

// Temporarily disable cyclic dependency checks until https://github.com/sbmlteam/libsbml/issues/374 is solved
/*
determineAllDependencies();
determineCycles(m);

checkForImplicitCompartmentReference(m);
*/
}

void
Expand Down

0 comments on commit 3a62b68

Please sign in to comment.