Skip to content

Commit

Permalink
checking on rate
Browse files Browse the repository at this point in the history
  • Loading branch information
danv61 committed Feb 20, 2025
1 parent 70b6ba4 commit 00b81b6
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1250,12 +1250,12 @@ public void gatherIssues(IssueContext issueContext, List<Issue> issueList, React
issueList.add(new Issue(r, issueContext, IssueCategory.Identifiers, msg, tip, Issue.Severity.ERROR));
return;
}
// if(checkOnRate(sasOne, sasTwo) == false) { // rate doesn't check as acceptable
// String msg = "The simulation Kon is too large (I.e. exceeds the diffusion limited rate) for this reaction.";
// String tip = "Please consider reducing Kon or increasing the Radius or D of the participating Site Types.";
// issueList.add(new Issue(r, issueContext, IssueCategory.Identifiers, msg, tip, Issue.Severity.ERROR));
// return;
// }
if(checkOnRate(sasOne, sasTwo) == false) { // rate doesn't check as acceptable
String msg = "The simulation Kon is too large (I.e. exceeds the diffusion limited rate) for this reaction.";
String tip = "Please consider reducing Kon or increasing the Radius or D of the participating Site Types.";
issueList.add(new Issue(r, issueContext, IssueCategory.Identifiers, msg, tip, Issue.Severity.ERROR));
return;
}
}
// binding reactions must be reversible
if(!reactionRule.isReversible()) {
Expand Down

0 comments on commit 00b81b6

Please sign in to comment.