package causality; import exercise.Solution; import tetrad.graph.TetradGraph; /** * This class encodes the TetradGraph that gets submitted by the student * * @version 0.9 June 20, 1999 * @author David Danks */ public class CLSolution implements Solution { private TetradGraph tg; /** * @param tGraph The TetradGraph the student is submitting */ public CLSolution (TetradGraph tGraph) { tg = tGraph; } /** * @return The TetradGraph the student submitted */ public TetradGraph getTetradGraph() { return tg; } }