package causation.lab; import exercise.Submission; 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 CLSubmission implements Submission { private TetradGraph tg; /** * @param tGraph The TetradGraph the student is submitting */ public CLSubmission (TetradGraph tGraph) { tg = tGraph; } /** * @return The TetradGraph the student submitted */ public TetradGraph getTetradGraph() { return tg; } }