Skip to content

Commit

Permalink
- forgot some debug prints. now they are no more!
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@5402 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
adrpo committed Apr 27, 2010
1 parent a8cd3d9 commit 3f4b62c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Compiler/ConnectionGraph.mo
Expand Up @@ -757,9 +757,9 @@ algorithm
// TODO! FIXME! CHECK THIS! anything else could not have come from a connect, ignore!
case (inElement, left, right)
equation
debug_print("element", inElement);
debug_print("left", left);
debug_print("right", right);
//debug_print("element", inElement);
//debug_print("left", left);
//debug_print("right", right);
then false;
end matchcontinue;
end originInConnect;
Expand Down Expand Up @@ -787,8 +787,8 @@ algorithm
b1 = Exp.crefPrefixOf(left, crLeft);
b2 = Exp.crefPrefixOf(right, crRight);
true = boolAnd(b1, b2);
print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
print("origin: " +& Exp.printComponentRefStr(crLeft) +& ", " +& Exp.printComponentRefStr(crRight) +& "\n");
// print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
// print("origin: " +& Exp.printComponentRefStr(crLeft) +& ", " +& Exp.printComponentRefStr(crRight) +& "\n");
then
true;
// try inverse match
Expand All @@ -797,8 +797,8 @@ algorithm
b1 = Exp.crefPrefixOf(right, crLeft);
b2 = Exp.crefPrefixOf(left, crRight);
true = boolAnd(b1, b2);
print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
print("origin: " +& Exp.printComponentRefStr(crRight) +& ", " +& Exp.printComponentRefStr(crLeft) +& "\n");
// print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
// print("origin: " +& Exp.printComponentRefStr(crRight) +& ", " +& Exp.printComponentRefStr(crLeft) +& "\n");
then
true;
// try the rest
Expand Down

0 comments on commit 3f4b62c

Please sign in to comment.