-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#295, extra variant of LocArrayInfo, namely LocArrayReadInfo, for whe…
…n a loc-array is not touched during loc-array-preprocessing, but one of its values is queried, during partition computation
- Loading branch information
1 parent
ee5830d
commit c312d3a
Showing
4 changed files
with
92 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...c/de/uni_freiburg/informatik/ultimate/icfgtransformer/heapseparator/LocArrayReadInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package de.uni_freiburg.informatik.ultimate.icfgtransformer.heapseparator; | ||
|
||
import de.uni_freiburg.informatik.ultimate.icfgtransformer.heapseparator.datastructures.EdgeInfo; | ||
import de.uni_freiburg.informatik.ultimate.logic.Term; | ||
import de.uni_freiburg.informatik.ultimate.modelcheckerutils.cfg.variables.IProgramVarOrConst; | ||
|
||
public class LocArrayReadInfo extends LocArrayInfo { | ||
|
||
public LocArrayReadInfo(final EdgeInfo edge, final IProgramVarOrConst pvoc, final Term term) { | ||
super(edge, pvoc, term, null); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters