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
42781767
Commit
42781767
authored
Feb 23, 2016
by
Maximilien Colange
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove dependency on Batteries.
parent
aba08bdc
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
9 deletions
+7
-9
src/_tags.in
src/_tags.in
+1
-1
src/log.ml
src/log.ml
+0
-1
src/main.ml
src/main.ml
+0
-1
src/options.ml
src/options.ml
+1
-1
src/timedAutomaton.ml
src/timedAutomaton.ml
+5
-5
No files found.
src/_tags.in
View file @
42781767
<*>: bin_annot
<*.cm{o,x}> or <main.native>:
package(batteries),
debug, custom
<*.cm{o,x}> or <main.native>: debug, custom
<costs.ml>: pp(camlp4o pa_macro.cmo @TIAMO_MACROS@)
src/log.ml
View file @
42781767
open
Batteries
open
Printf
type
log_t
=
Info
|
Debug
|
Warning
|
Error
|
Fatal
...
...
src/main.ml
View file @
42781767
open
Batteries
open
Options
open
Printf
open
Reachability
...
...
src/options.ml
View file @
42781767
...
...
@@ -255,7 +255,7 @@ end
let
verify
(
module
O
:
OPTIONS
)
tafile
qfile
=
let
module
TA
=
(
val
!
O
.
ta_module
)
in
let
ta
=
TA
.
from_file
tafile
qfile
()
in
(* TA.print_timed_automaton
Batteries.
stdout ta; *)
(* TA.print_timed_automaton stdout ta; *)
let
module
WO_tmp
=
(
val
!
O
.
walk_order
:
O
.
PARTIAL_WO
)
in
let
module
ABS
=
(
val
!
O
.
abstraction
)
in
let
module
INCL
=
(
val
!
O
.
inclusion
)
in
...
...
src/timedAutomaton.ml
View file @
42781767
open
Common
open
Batteries
.
Printf
open
Printf
open
Dbm
open
Uta
...
...
@@ -34,10 +34,10 @@ sig
val
global_m_bounds
:
timed_automaton
->
int
array
val
global_m_invariant
:
timed_automaton
->
UDbm
.
Dbm
.
t
(** print functions *)
val
print_discrete_state
:
'
b
BatIO
.
output
->
timed_automaton
->
discrete_state
->
unit
val
print_transition
:
'
b
BatIO
.
output
->
timed_automaton
->
transition
->
unit
val
print_timed_automaton
:
'
b
BatIO
.
output
->
timed_automaton
->
unit
val
print_extended_state
:
'
b
BatIO
.
output
->
timed_automaton
->
(
discrete_state
*
MDbm
.
Dbm
.
t
)
->
unit
val
print_discrete_state
:
out_channel
->
timed_automaton
->
discrete_state
->
unit
val
print_transition
:
out_channel
->
timed_automaton
->
transition
->
unit
val
print_timed_automaton
:
out_channel
->
timed_automaton
->
unit
val
print_extended_state
:
out_channel
->
timed_automaton
->
(
discrete_state
*
MDbm
.
Dbm
.
t
)
->
unit
val
transition_to_string
:
timed_automaton
->
(
discrete_state
*
UDbm
.
Dbm
.
t
*
((
clock_t
*
int
)
list
)
*
discrete_state
)
->
string
val
from_file
:
string
->
string
->
?
scale
:
int
->
?
enlarge
:
int
->
unit
->
timed_automaton
...
...
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