-
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.
Fully removed recursion, updated graphs, implemented depth test
- Loading branch information
Showing
13 changed files
with
3,300 additions
and
3,164 deletions.
There are no files selected for viewing
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4,285 changes: 2,147 additions & 2,138 deletions
4,285
IncrementalMinimization/results/compare_test.txt
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
class DebugException extends Exception | ||
{ | ||
private final Integer maxDepth; | ||
|
||
public DebugException (String message, Integer maxDepth) | ||
{ | ||
super(message); | ||
this.maxDepth = maxDepth; | ||
} | ||
|
||
public DebugException (String message) | ||
{ | ||
this(message, null); | ||
} | ||
|
||
public int getDepth() | ||
{ | ||
return maxDepth; | ||
} | ||
} |
Oops, something went wrong.