-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #203 from cmu-phil/algcomparison
Committing algcomparison stuff to this branch.
- Loading branch information
Showing
54 changed files
with
3,182 additions
and
5 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
17 changes: 17 additions & 0 deletions
17
tetrad-lib/src/main/java/edu/cmu/tetrad/algcomparison/Algorithm.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,17 @@ | ||
package edu.cmu.tetrad.algcomparison; | ||
|
||
import edu.cmu.tetrad.data.DataSet; | ||
import edu.cmu.tetrad.graph.Graph; | ||
|
||
import java.util.Map; | ||
|
||
/** | ||
* Created by jdramsey on 6/4/16. | ||
*/ | ||
public interface Algorithm { | ||
Graph search(DataSet dataSet, Map<String, Number> parameters); | ||
|
||
Graph getComparisonGraph(Graph dag); | ||
|
||
String getDescription(); | ||
} |
Oops, something went wrong.