Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
pruemmer committed Aug 20, 2014
1 parent cb329b3 commit 98c9145
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 4 deletions.
4 changes: 3 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@
<property name="build.dir" value="${base.dir}/bin" />

<!-- BIP libraries -->
<!-- BIP support is disabled for the time being
<path id="bip.jars">
<fileset dir="${base.dir}/bip-lib">
<include name="*.jar"/>
</fileset>
</path>
-->

<!-- libraries -->
<property name="java-cup.jar" value="${lib.dir}/java-cup-11a.jar" />
Expand Down Expand Up @@ -142,7 +144,7 @@
<pathelement location="${nts.jar}" />
<pathelement location="${build.dir}" />
</classpath>
<classpath refid="bip.jars" />
<!-- <classpath refid="bip.jars" /> -->
</scalac>
</target>

Expand Down
5 changes: 5 additions & 0 deletions flata/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Flata is the toolset for the manipulation and the analysis of counter
automata, distributed under LGPL at http://nts.imag.fr/index.php/Flata

NTS is the Java parser for the Numerical Transition Systems library,
available from https://github.com/filipkonecny/nts
Binary file added flata/acceleration.jar
Binary file not shown.
Binary file added flata/acceleration.tgz
Binary file not shown.
Binary file added flata/flata.jar
Binary file not shown.
Binary file added flata/nts.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions src/lazabs/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ object Main {


val greeting =
"Eldarica [version 1.00]. (C) Copyright 2012 LARA. EPFL"
"Eldarica, 2014-08-20. (C) Copyright 2012-2014 Hossein Hojjat and Philipp Ruemmer"

def doMain(args: Array[String],
stoppingCond : => Boolean) : Unit = try {
Expand Down Expand Up @@ -221,7 +221,7 @@ object Main {
case "-pngNo" :: rest => pngNo = true; arguments(rest)
case "-dotCEX" :: rest => pngNo = false; arguments(rest)
case "-assert" :: rest => GlobalParameters.get.assertions = true; arguments(rest)
case "-h" :: rest => println(greeting + "\nUsage: lazabs [options] file\n\n" +
case "-h" :: rest => println(greeting + "\n\nUsage: lazabs [options] file\n\n" +
"General options:\n" +
" -h\t\tShow this information\n" +
" -assert\tEnable assertions in Eldarica\n" +
Expand Down Expand Up @@ -334,7 +334,7 @@ object Main {
format match {
case InputFormat.Bip =>
// BIP mode
lazabs.bip.HornBip.apply(fileName)
// lazabs.bip.HornBip.apply(fileName)
return
case InputFormat.UppaalRelational =>
// uses iterative relational encoding to solve the system
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 98c9145

Please sign in to comment.