@@ -757,9 +757,9 @@ algorithm
757
757
// TODO! FIXME! CHECK THIS! anything else could not have come from a connect, ignore!
758
758
case (inElement, left, right)
759
759
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);
763
763
then false ;
764
764
end matchcontinue;
765
765
end originInConnect;
@@ -787,8 +787,8 @@ algorithm
787
787
b1 = Exp . crefPrefixOf(left, crLeft);
788
788
b2 = Exp . crefPrefixOf(right, crRight);
789
789
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");
792
792
then
793
793
true ;
794
794
// try inverse match
@@ -797,8 +797,8 @@ algorithm
797
797
b1 = Exp . crefPrefixOf(right, crLeft);
798
798
b2 = Exp . crefPrefixOf(left, crRight);
799
799
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");
802
802
then
803
803
true ;
804
804
// try the rest
0 commit comments