Skip to content

Commit 3f4b62c

Browse files
committed
- forgot some debug prints. now they are no more!
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@5402 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent a8cd3d9 commit 3f4b62c

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Compiler/ConnectionGraph.mo

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -757,9 +757,9 @@ algorithm
757757
// TODO! FIXME! CHECK THIS! anything else could not have come from a connect, ignore!
758758
case (inElement, left, right)
759759
equation
760-
debug_print("element", inElement);
761-
debug_print("left", left);
762-
debug_print("right", right);
760+
//debug_print("element", inElement);
761+
//debug_print("left", left);
762+
//debug_print("right", right);
763763
then false;
764764
end matchcontinue;
765765
end originInConnect;
@@ -787,8 +787,8 @@ algorithm
787787
b1 = Exp.crefPrefixOf(left, crLeft);
788788
b2 = Exp.crefPrefixOf(right, crRight);
789789
true = boolAnd(b1, b2);
790-
print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
791-
print("origin: " +& Exp.printComponentRefStr(crLeft) +& ", " +& Exp.printComponentRefStr(crRight) +& "\n");
790+
// print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
791+
// print("origin: " +& Exp.printComponentRefStr(crLeft) +& ", " +& Exp.printComponentRefStr(crRight) +& "\n");
792792
then
793793
true;
794794
// try inverse match
@@ -797,8 +797,8 @@ algorithm
797797
b1 = Exp.crefPrefixOf(right, crLeft);
798798
b2 = Exp.crefPrefixOf(left, crRight);
799799
true = boolAnd(b1, b2);
800-
print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
801-
print("origin: " +& Exp.printComponentRefStr(crRight) +& ", " +& Exp.printComponentRefStr(crLeft) +& "\n");
800+
// print("connect: " +& Exp.printComponentRefStr(left) +& ", " +& Exp.printComponentRefStr(right) +& "\n");
801+
// print("origin: " +& Exp.printComponentRefStr(crRight) +& ", " +& Exp.printComponentRefStr(crLeft) +& "\n");
802802
then
803803
true;
804804
// try the rest

0 commit comments

Comments
 (0)