Skip to content

Commit

Permalink
Another small bug fix in the ArrayInterpolator.
Browse files Browse the repository at this point in the history
Open A-paths with main diseq.
  • Loading branch information
tanjaschindler committed Feb 2, 2018
1 parent af68637 commit 80ac777
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -996,9 +996,11 @@ public void addDiseq(Occurrence headOcc, Occurrence tailOcc) {
mHead.closeAPath(mTail, boundaryHeadTerm, headOcc);
mHead.openAPath(mTail, boundaryHeadTerm, headOcc);
mHead.closeAPath(mTail, boundaryHeadTerm, mDiseqInfo);
mHead.openAPath(mTail, boundaryHeadTerm, mDiseqInfo);
mTail.closeAPath(mHead, boundaryTailTerm, tailOcc);
mTail.openAPath(mHead, boundaryTailTerm, tailOcc);
mTail.closeAPath(mHead, boundaryTailTerm, mDiseqInfo);
mTail.openAPath(mHead, boundaryTailTerm, mDiseqInfo);

if (mLemmaInfo.getLemmaType().equals(":read-over-weakeq")) {
if (mIndexEquality != null) {
Expand Down

0 comments on commit 80ac777

Please sign in to comment.