-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also created interface for minimization algorithms
- Loading branch information
Showing
13 changed files
with
74 additions
and
12 deletions.
There are no files selected for viewing
3 changes: 2 additions & 1 deletion
3
...entalMinimization/src/DebugException.java → ...tion/src/minimization/DebugException.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
10 changes: 10 additions & 0 deletions
10
IncrementalMinimization/src/minimization/MinimizationAlgorithm.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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package minimization; | ||
|
||
import org.sat4j.specs.TimeoutException; | ||
|
||
import automata.sfa.SFA; | ||
|
||
public interface MinimizationAlgorithm <P,S> | ||
{ | ||
public SFA<P,S> minimize() throws TimeoutException, DebugException; | ||
} |
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
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
7 changes: 7 additions & 0 deletions
7
...talMinimization/src/IncrementalNaive.java → ...ization/incremental/IncrementalNaive.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
5 changes: 5 additions & 0 deletions
5
...inimization/src/IncrementalRecursive.java → ...ion/incremental/IncrementalRecursive.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
1 change: 1 addition & 0 deletions
1
...tion/src/TimeBudgetExceededException.java → ...remental/TimeBudgetExceededException.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,3 +1,4 @@ | ||
package minimization.incremental; | ||
import org.sat4j.specs.TimeoutException; | ||
|
||
import automata.sfa.SFA; | ||
|
1 change: 1 addition & 0 deletions
1
...ementalMinimization/src/DisjointSets.java → ...mization/src/structures/DisjointSets.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,3 +1,4 @@ | ||
package structures; | ||
import java.util.ArrayList; | ||
import java.util.Collection; | ||
import java.util.HashMap; | ||
|
1 change: 1 addition & 0 deletions
1
IncrementalMinimization/src/MintermTree.java → ...imization/src/structures/MintermTree.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,3 +1,4 @@ | ||
package structures; | ||
import java.util.ArrayList; | ||
|
||
import org.sat4j.specs.TimeoutException; | ||
|
3 changes: 3 additions & 0 deletions
3
...talMinimization/src/TestDisjointSets.java → ...nimization/src/test/TestDisjointSets.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
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
File renamed without changes.
File renamed without changes.