Skip to content

Commit

Permalink
Merge pull request #1584 from cmu-phil/development
Browse files Browse the repository at this point in the history
7.3.3
  • Loading branch information
jdramsey authored Apr 12, 2023
2 parents 70d8220 + 17d50a1 commit 3961e15
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion data-reader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.3.2</version>
<version>7.3.3</version>
</parent>
<!-- <groupId>io.github.cmu-phil</groupId>-->
<artifactId>data-reader</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.3.2</version>
<version>7.3.3</version>
<packaging>pom</packaging>

<name>Tetrad Project</name>
Expand Down
2 changes: 1 addition & 1 deletion tetrad-gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.3.2</version>
<version>7.3.3</version>
</parent>

<artifactId>tetrad-gui</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion tetrad-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>io.github.cmu-phil</groupId>
<artifactId>tetrad</artifactId>
<version>7.3.2</version>
<version>7.3.3</version>
</parent>

<artifactId>tetrad-lib</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ public IMAGES() {

@Override
public Graph search(List<DataModel> dataSets, Parameters parameters) {
this.knowledge = dataSets.get(0).getKnowledge();
int meta = parameters.getInt(Params.IMAGES_META_ALG);

if (parameters.getInt(Params.NUMBER_RESAMPLING) < 1) {
Expand All @@ -65,7 +64,6 @@ public Graph search(List<DataModel> dataSets, Parameters parameters) {
}

dataSets = _dataSets;
this.knowledge = _dataSets.get(0).getKnowledge();
}

List<Score> scores = new ArrayList<>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public Graph search(DataModel dataModel, Parameters parameters) {
search.setDepth(parameters.getInt(Params.DEPTH));
search.setAggressivelyPreventCycles(true);
search.setVerbose(parameters.getBoolean(Params.VERBOSE));
dataModel.setKnowledge(this.knowledge);
search.setKnowledge(this.knowledge);
// search.setConcurrent(parameters.getBoolean(Params.CONCURRENT_FAS));
search.setUseMaxP(parameters.getBoolean(Params.USE_MAX_P_ORIENTATION_HEURISTIC));
search.setMaxPPathLength(parameters.getInt(Params.MAX_P_ORIENTATION_MAX_PATH_LENGTH));
Expand Down

0 comments on commit 3961e15

Please sign in to comment.