From: Brian Norris Date: Tue, 21 Aug 2012 06:58:38 +0000 (-0700) Subject: model: correct mo_graph comment X-Git-Tag: pldi2013~262 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2627422b8bfba845fc2583032b96d581b72d0e4d;p=model-checker.git model: correct mo_graph comment My understanding of the mo_graph was incorrect, due to some confusion over the CycleGraph interfaces. Correct this. --- diff --git a/model.h b/model.h index fcdc69f..98b9d5f 100644 --- a/model.h +++ b/model.h @@ -132,10 +132,9 @@ private: * disjoint (unconnected) subgraphs, each graph corresponding to a * separate ordering on a distinct object. * - * Note that the edges in this graph actually represent the "ordered - * after" relation, such that a --> b means a was - * ordered after b, or in the traditional sense of - * modification order, b --mo--> a. + * The edges in this graph represent the "ordered before" relation, + * such that a --> b means a was ordered before + * b. */ CycleGraph *mo_graph;