@@ -697,6 +697,7 @@ algorithm
697697 matchcontinue (inPath)
698698 case (Absyn . IDENT (name = "tanh" )) then ();
699699 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "tanh" )))) then ();
700+ case (Absyn . FULLYQUALIFIED (inPath)) equation isTanh(inPath); then ();
700701 end matchcontinue;
701702end isTanh;
702703
@@ -707,6 +708,7 @@ algorithm
707708 matchcontinue (inPath)
708709 case (Absyn . IDENT (name = "cosh" )) then ();
709710 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "cosh" )))) then ();
711+ case (Absyn . FULLYQUALIFIED (inPath)) equation isCosh(inPath); then ();
710712 end matchcontinue;
711713end isCosh;
712714
@@ -717,6 +719,7 @@ algorithm
717719 matchcontinue (inPath)
718720 case (Absyn . IDENT (name = "arccos" )) then ();
719721 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "acos" )))) then ();
722+ case (Absyn . FULLYQUALIFIED (inPath)) equation isACos(inPath); then ();
720723 end matchcontinue;
721724end isACos;
722725
@@ -727,6 +730,7 @@ algorithm
727730 matchcontinue (inPath)
728731 case (Absyn . IDENT (name = "arcsin" )) then ();
729732 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "asin" )))) then ();
733+ case (Absyn . FULLYQUALIFIED (inPath)) equation isASin(inPath); then ();
730734 end matchcontinue;
731735end isASin;
732736
@@ -737,6 +741,7 @@ algorithm
737741 matchcontinue (inPath)
738742 case (Absyn . IDENT (name = "arctan" )) then ();
739743 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "atan" )))) then ();
744+ case (Absyn . FULLYQUALIFIED (inPath)) equation isATan(inPath); then ();
740745 end matchcontinue;
741746end isATan;
742747
@@ -747,6 +752,7 @@ algorithm
747752 matchcontinue (inPath)
748753 case (Absyn . IDENT (name = "arctan2" )) then ();
749754 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "atan2" )))) then ();
755+ case (Absyn . FULLYQUALIFIED (inPath)) equation isATan2(inPath); then ();
750756 end matchcontinue;
751757end isATan2;
752758
@@ -757,6 +763,7 @@ algorithm
757763 matchcontinue (inPath)
758764 case (Absyn . IDENT (name = "sinh" )) then ();
759765 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "sinh" )))) then ();
766+ case (Absyn . FULLYQUALIFIED (inPath)) equation isSinh(inPath); then ();
760767 end matchcontinue;
761768end isSinh;
762769
@@ -767,6 +774,7 @@ algorithm
767774 matchcontinue (inPath)
768775 case (Absyn . IDENT (name = "sin" )) then ();
769776 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "sin" )))) then ();
777+ case (Absyn . FULLYQUALIFIED (inPath)) equation isSin(inPath); then ();
770778 end matchcontinue;
771779end isSin;
772780
@@ -777,6 +785,7 @@ algorithm
777785 matchcontinue (inPath)
778786 case (Absyn . IDENT (name = "cos" )) then ();
779787 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "cos" )))) then ();
788+ case (Absyn . FULLYQUALIFIED (inPath)) equation isCos(inPath); then ();
780789 end matchcontinue;
781790end isCos;
782791
@@ -787,6 +796,7 @@ algorithm
787796 matchcontinue (inPath)
788797 case (Absyn . IDENT (name = "exp" )) then ();
789798 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "exp" )))) then ();
799+ case (Absyn . FULLYQUALIFIED (inPath)) equation isExp(inPath); then ();
790800 end matchcontinue;
791801end isExp;
792802
@@ -796,7 +806,8 @@ algorithm
796806 _:=
797807 matchcontinue (inPath)
798808 case (Absyn . IDENT (name = "log" )) then ();
799- case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "log" )))) then ();
809+ case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "log" )))) then ();
810+ case (Absyn . FULLYQUALIFIED (inPath)) equation isLog(inPath); then ();
800811 end matchcontinue;
801812end isLog;
802813
@@ -807,6 +818,7 @@ algorithm
807818 matchcontinue (inPath)
808819 case (Absyn . IDENT (name = "log10" )) then ();
809820 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "log10" )))) then ();
821+ case (Absyn . FULLYQUALIFIED (inPath)) equation isLog10(inPath); then ();
810822 end matchcontinue;
811823end isLog10;
812824
@@ -817,6 +829,7 @@ algorithm
817829 matchcontinue (inPath)
818830 case (Absyn . IDENT (name = "sqrt" )) then ();
819831 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "sqrt" )))) then ();
832+ case (Absyn . FULLYQUALIFIED (inPath)) equation isSqrt(inPath); then ();
820833 end matchcontinue;
821834end isSqrt;
822835
@@ -827,6 +840,7 @@ algorithm
827840 matchcontinue (inPath)
828841 case (Absyn . IDENT (name = "tan" )) then ();
829842 case (Absyn . QUALIFIED (name = "Modelica" ,path = Absyn . QUALIFIED (name = "Math" ,path = Absyn . IDENT (name = "tan" )))) then ();
843+ case (Absyn . FULLYQUALIFIED (inPath)) equation isTan(inPath); then ();
830844 end matchcontinue;
831845end isTan;
832846end Derive ;
0 commit comments