~workcraft/workcraft/2.0

« back to all changes in this revision

Viewing changes to CpogsPlugin/src/org/workcraft/plugins/cpog/optimisation/expressions/Or.java

  • Committer: Danil Sokolov
  • Date: 2014-01-29 19:00:22 UTC
  • mfrom: (470.1.134 src-danilovesky)
  • Revision ID: danilovesky@gmail.com-20140129190022-hvjinnjj60wou9s0
Merge

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
public class Or extends BinaryBooleanFormula 
27
27
{
28
 
        Or(BooleanFormula x, BooleanFormula y) {
 
28
        public Or(BooleanFormula x, BooleanFormula y) {
29
29
                super(x,y);
30
30
        }
31
31