forked from ftsrg/theta
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4609a7e
commit a58167d
Showing
2 changed files
with
20 additions
and
42 deletions.
There are no files selected for viewing
46 changes: 20 additions & 26 deletions
46
...eta.formalism.sts/src/test/java/hu/bme/mit/theta/formalism/sts/aiger/AIGERLoaderTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,20 @@ | ||
package hu.bme.mit.theta.formalism.sts.aiger; | ||
|
||
import java.io.IOException; | ||
|
||
import org.junit.Test; | ||
|
||
import hu.bme.mit.theta.formalism.sts.STS; | ||
import hu.bme.mit.theta.formalism.sts.aiger.AigerParser; | ||
import hu.bme.mit.theta.formalism.sts.aiger.CompactingAigerParser; | ||
import hu.bme.mit.theta.formalism.sts.aiger.AigerVisualizer; | ||
|
||
public class AIGERLoaderTest { | ||
|
||
@Test | ||
public void testAIGERLoader() throws IOException { | ||
AigerParser loader = null; | ||
// loader = new AIGERLoaderSimple(); | ||
loader = new CompactingAigerParser(); | ||
final STS sts = loader.parse("src/test/resources/simple3.aag"); | ||
|
||
AigerVisualizer.visualize("src/test/resources/simple3.aag", "src/test/resources/simple3.dot"); | ||
|
||
System.out.println(sts); | ||
} | ||
|
||
} | ||
package hu.bme.mit.theta.formalism.sts.aiger; | ||
|
||
import java.io.IOException; | ||
|
||
import org.junit.Test; | ||
|
||
import hu.bme.mit.theta.formalism.sts.STS; | ||
|
||
public class AIGERLoaderTest { | ||
|
||
@Test | ||
public void testAIGERLoader() throws IOException { | ||
AigerParser loader = null; | ||
// loader = new AIGERLoaderSimple(); | ||
loader = new CompactingAigerParser(); | ||
final STS sts = loader.parse("src/test/resources/simple3.aag"); | ||
System.out.println(sts); | ||
} | ||
|
||
} |
16 changes: 0 additions & 16 deletions
16
hu.bme.mit.theta.formalism.sts/src/test/resources/simple3.dot
This file was deleted.
Oops, something went wrong.