All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cmu.tetrad.search.utils.SepsetsPossibleMsep Maven / Gradle / Ivy

There is a newer version: 7.6.5
Show newest version
///////////////////////////////////////////////////////////////////////////////
// For information as to what this class does, see the Javadoc, below.       //
// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,       //
// 2007, 2008, 2009, 2010, 2014, 2015, 2022 by Peter Spirtes, Richard        //
// Scheines, Joseph Ramsey, and Clark Glymour.                               //
//                                                                           //
// This program is free software; you can redistribute it and/or modify      //
// it under the terms of the GNU General Public License as published by      //
// the Free Software Foundation; either version 2 of the License, or         //
// (at your option) any later version.                                       //
//                                                                           //
// This program is distributed in the hope that it will be useful,           //
// but WITHOUT ANY WARRANTY; without even the implied warranty of            //
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the             //
// GNU General Public License for more details.                              //
//                                                                           //
// You should have received a copy of the GNU General Public License         //
// along with this program; if not, write to the Free Software               //
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA //
///////////////////////////////////////////////////////////////////////////////

package edu.cmu.tetrad.search.utils;

import edu.cmu.tetrad.data.Knowledge;
import edu.cmu.tetrad.graph.Graph;
import edu.cmu.tetrad.graph.GraphUtils;
import edu.cmu.tetrad.graph.Node;
import edu.cmu.tetrad.search.IndependenceTest;
import edu.cmu.tetrad.search.test.IndependenceResult;
import edu.cmu.tetrad.util.SublistGenerator;
import org.apache.commons.math3.util.FastMath;

import java.util.ArrayList;
import java.util.List;
import java.util.Set;

/**
 * 

Provides a sepset producer using conditional independence tests to generate * the Sepset map, for the case where possible msep sets are required.

* * @author josephramsey * @see SepsetProducer * @see SepsetMap */ public class SepsetsPossibleMsep implements SepsetProducer { private final Graph graph; private final int maxPathLength; private final Knowledge knowledge; private final int depth; private final IndependenceTest test; private boolean verbose; private IndependenceResult result; public SepsetsPossibleMsep(Graph graph, IndependenceTest test, Knowledge knowledge, int depth, int maxPathLength) { this.graph = graph; this.test = test; this.maxPathLength = maxPathLength; this.knowledge = knowledge; this.depth = depth; } /** * Pick out the sepset from among adj(i) or adj(k) with the highest p value. */ public Set getSepset(Node i, Node k) { Set condSet = getCondSet(i, k, this.maxPathLength); if (condSet == null) { condSet = getCondSet(k, i, this.maxPathLength); } return condSet; } public boolean isUnshieldedCollider(Node i, Node j, Node k) { Set sepset = getSepset(i, k); return sepset != null && !sepset.contains(j); } @Override public double getScore() { return -(this.result.getPValue() - this.test.getAlpha()); } @Override public List getVariables() { return this.test.getVariables(); } public boolean isVerbose() { return this.verbose; } public void setVerbose(boolean verbose) { this.verbose = verbose; } @Override public boolean isIndependent(Node d, Node c, Set path) { IndependenceResult result = this.test.checkIndependence(d, c, path); return result.isIndependent(); } private Set getCondSet(Node node1, Node node2, int maxPathLength) { List possibleMsepSet = getPossibleMsep(node1, node2, maxPathLength); List possibleMsep = new ArrayList<>(possibleMsepSet); boolean noEdgeRequired = this.knowledge.noEdgeRequired(node1.getName(), node2.getName()); int _depth = this.depth == -1 ? 1000 : this.depth; _depth = FastMath.min(_depth, possibleMsep.size()); SublistGenerator cg = new SublistGenerator(possibleMsep.size(), _depth); int[] choice; while ((choice = cg.next()) != null) { if (Thread.currentThread().isInterrupted()) { break; } if (choice.length < 1) continue; Set condSet = GraphUtils.asSet(choice, possibleMsep); // check against bk knowledge added by DMalinsky 07/24/17 **/ // if (knowledge.isForbidden(node1.getName(), node2.getName())) continue; boolean flagForbid = false; for (Node j : condSet) { if (this.knowledge.isInWhichTier(j) > FastMath.max(this.knowledge.isInWhichTier(node1), this.knowledge.isInWhichTier(node2))) { // condSet cannot be in the future of both endpoints // if (knowledge.isForbidden(j.getName(), node1.getName()) && knowledge.isForbidden(j.getName(), node2.getName())) { flagForbid = true; break; } } if (flagForbid) continue; IndependenceResult result = this.test.checkIndependence(node1, node2, condSet); this.result = result; if (result.isIndependent() && noEdgeRequired) { return condSet; } } return null; } private List getPossibleMsep(Node x, Node y, int maxPathLength) { List msep = this.graph.paths().possibleMsep(x, y, maxPathLength); if (this.verbose) { System.out.println("Possible-M-Sep(" + x + ", " + y + ") = " + msep); } return msep; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy