Skip to content

Commit a231670

Browse files
committed
- changes due to move of dumping functions to DAEDump.mo
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@5598 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
1 parent 4699d57 commit a231670

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Compiler/DAEQuery.mo

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ import Util;
4646
import Exp;
4747
import Absyn;
4848
import DAE;
49-
import DAEUtil;
5049
import Algorithm;
5150
import RTOpts;
51+
import DAEDump;
5252

5353
public function writeIncidenceMatrix
5454
input DAELow.DAELow dlow;
@@ -388,7 +388,7 @@ algorithm
388388
streamPrefix = streamPrefix)) :: {}),varno)
389389
equation
390390
varnostr = intString(varno);
391-
dirstr = DAEUtil.dumpDirectionStr(dir);
391+
dirstr = DAEDump.dumpDirectionStr(dir);
392392
str1 = Exp.printComponentRefStr(cr);
393393
/*
394394
paths_lst = Util.listMap(paths, Absyn.pathString);
@@ -400,7 +400,7 @@ algorithm
400400
print(" ");
401401
print(path_str);
402402
indx_str = intString(indx);
403-
str = DAEUtil.dumpTypeStr(var_type);print( " type: "); print(str);
403+
str = DAEDump.dumpTypeStr(var_type);print( " type: "); print(str);
404404
405405
print(" indx = ");
406406
print(indx_str);
@@ -426,7 +426,7 @@ algorithm
426426
streamPrefix = streamPrefix)) :: xs),varno)
427427
equation
428428
varnostr = intString(varno);
429-
dirstr = DAEUtil.dumpDirectionStr(dir);
429+
dirstr = DAEDump.dumpDirectionStr(dir);
430430
str1 = Exp.printComponentRefStr(cr);
431431
/*
432432
paths_lst = Util.listMap(paths, Absyn.pathString);
@@ -438,7 +438,7 @@ algorithm
438438
print(" ");
439439
print(path_str);
440440
indx_str = intString(indx);
441-
str = DAEUtil.dumpTypeStr(var_type);print( " type: "); print(str);
441+
str = DAEDump.dumpTypeStr(var_type);print( " type: "); print(str);
442442
443443
print(" indx = ");
444444
print(indx_str);

0 commit comments

Comments
 (0)