Skip to content

Commit

Permalink
Exp.dump had moved
Browse files Browse the repository at this point in the history
git-svn-id: https://openmodelica.org/svn/OpenModelica/trunk@48 f25d12d1-65f4-0310-ae8a-bbce733d8d8e
  • Loading branch information
x97davka committed Dec 1, 1997
1 parent 2968c7b commit 9c1c07c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions modeq/dae.rml
Expand Up @@ -14,6 +14,7 @@
module DAE:

with "exp.rml"
with "dump.rml"

type Ident = string

Expand Down Expand Up @@ -50,11 +51,11 @@ relation dump_comp: DAEcomp => () =
dump_comp(VAR(id, kind)) => ()

rule dump_kind kind & print id &
print "=" & Exp.dump ex & print "\n"
print "=" & Dump.dump_exp ex & print "\n"
--------------------------------------
dump_comp(VARVAL(id, kind, ex)) => ()

rule print " " & Exp.dump eq & print "\n"
rule print " " & Dump.dump_exp eq & print "\n"
--------------------------------------
dump_comp(EQUATION(eq)) => ()

Expand Down
3 changes: 2 additions & 1 deletion modeq/modelica.rml
Expand Up @@ -7,6 +7,7 @@ module Modelica:
with "exp.rml"
with "dae.rml"
with "class.rml"
with "dump.rml"

type Ident = string

Expand Down Expand Up @@ -175,7 +176,7 @@ and (* relation *) dump_element: Element => () =
--------------
dump_element(COMP(typ, comp))

rule Exp.dump(eq) & print "\n"
rule Dump.dump_exp(eq) & print "\n"
--------------
dump_element(EQUATION(eq))

Expand Down

0 comments on commit 9c1c07c

Please sign in to comment.