Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
tiamo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Maximilien COLANGE
tiamo
Commits
8e472272
Commit
8e472272
authored
Feb 24, 2016
by
Maximilien Colange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change a function name.
parent
332ae767
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
src/ita.ml
src/ita.ml
+1
-1
src/timedAutomaton.ml
src/timedAutomaton.ml
+3
-3
No files found.
src/ita.ml
View file @
8e472272
...
...
@@ -90,7 +90,7 @@ sig
val
from_file
:
string
->
ta
(** PRINT FUNCTIONS **)
val
st
ate_to_string
:
ta
->
state
->
string
val
st
ring_of_state
:
ta
->
state
->
string
val
print_timed_automaton
:
out_channel
->
ta
->
unit
end
...
...
src/timedAutomaton.ml
View file @
8e472272
...
...
@@ -174,7 +174,7 @@ struct
(* PRINT functions *)
(* indirection *)
let
print_discrete_state
chan
ta
s
=
Printf
.
fprintf
chan
"%s"
(
BareTA
.
st
ate_to_string
ta
.
t
s
)
Printf
.
fprintf
chan
"%s"
(
BareTA
.
st
ring_of_state
ta
.
t
s
)
let
print_extended_state
chan
ta
(
s
,
z
)
=
print_discrete_state
chan
ta
s
;
...
...
@@ -192,13 +192,13 @@ struct
let
buf
=
Buffer
.
create
128
in
let
out
=
Buffer
.
add_string
buf
in
out
"("
;
out
(
BareTA
.
st
ate_to_string
ta
.
t
source
);
out
(
BareTA
.
st
ring_of_state
ta
.
t
source
);
out
","
;
out
(
Ita
.
print_guard
(
clocks
ta
)
guard
);
out
","
;
out
(
Ita
.
print_resets
(
clocks
ta
)
ulist
);
out
","
;
out
(
BareTA
.
st
ate_to_string
ta
.
t
target
);
out
(
BareTA
.
st
ring_of_state
ta
.
t
target
);
out
")"
;
Buffer
.
contents
buf
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment