예제 #1
0
파일: Conj.cs 프로젝트: glycerine/SDFCalc
 public override bool Equals(PathCond other)
 {
     return(other is Conj && conds.UnsequencedEquals((other as Conj).conds));
 }
예제 #2
0
파일: Disj.cs 프로젝트: glycerine/SDFCalc
 public override bool Equals(PathCond other)
 {
     return(other is Disj && conds.UnsequencedEquals(((Disj)other).conds));
 }