-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merged version 0.3.0 from development branch.
- Loading branch information
Showing
108 changed files
with
3,260 additions
and
66,641 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -16,35 +16,35 @@ | |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
* MA 02110-1301 USA | ||
*/ | ||
package edu.pitt.dbmi.causal.cmd.sim; | ||
package edu.pitt.dbmi.causal.cmd; | ||
|
||
/** | ||
* | ||
* Mar 10, 2017 12:55:49 PM | ||
* Oct 2, 2017 10:45:47 AM | ||
* | ||
* @author Kevin V. Bui ([email protected]) | ||
*/ | ||
public enum DataSimulationType { | ||
public class AlgorithmRunException extends Exception { | ||
|
||
SEM_RAND_FWD("Sem-Random Foward Continuous Data Simulation", "sem-rand-fwd"), | ||
BAYES_NET_RAND_FWD("Bayes Net-Random Foward Discrete Data Simulation", "bayes-net-rand-fwd"), | ||
LEE_HASTIE("Lee-Hastie Mixed Data Simulation", "lee-hastie"); | ||
private static final long serialVersionUID = -1034221611736404899L; | ||
|
||
private final String title; | ||
public AlgorithmRunException() { | ||
} | ||
|
||
private final String cmd; | ||
public AlgorithmRunException(String message) { | ||
super(message); | ||
} | ||
|
||
private DataSimulationType(String title, String cmd) { | ||
this.title = title; | ||
this.cmd = cmd; | ||
public AlgorithmRunException(String message, Throwable cause) { | ||
super(message, cause); | ||
} | ||
|
||
public String getTitle() { | ||
return title; | ||
public AlgorithmRunException(Throwable cause) { | ||
super(cause); | ||
} | ||
|
||
public String getCmd() { | ||
return cmd; | ||
public AlgorithmRunException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
} | ||
|
||
} |
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
Oops, something went wrong.