Skip to content

Commit

Permalink
Seems to fix the issue #39
Browse files Browse the repository at this point in the history
The expression was given with a null...
  • Loading branch information
surli committed Jul 7, 2014
1 parent 08ba680 commit 2bbd392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FAMILIAR/src/fr/familiar/operations/ExpressionUtility.java
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ public static Expression<String> atMost1(Set<FeatureNode<String>> sources) {
FeatureNode<String> v2 = arr[j];
mtxs.add(new Expression<String>(ExpressionType.IMPLIES,
new Expression<String> (v1.getFeature()),
new Expression<String> (ExpressionType.NOT, v2.getFeature(), null)));
(new Expression<String> (v2.getFeature()).not())));
}
}
return mkConjunction (mtxs) ;
Expand Down

0 comments on commit 2bbd392

Please sign in to comment.