Skip to content

Commit

Permalink
Weakened a sequence axiom trigger to resolve #601
Browse files Browse the repository at this point in the history
  • Loading branch information
Malte Schwerhoff committed Mar 8, 2022
1 parent cd20cf0 commit 4ca96a4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/resources/dafny_axioms/sequences.vpr
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ domain $Seq[E] {
}

axiom seq_index_over_singleton {
forall e: E :: {Seq_index(Seq_singleton(e), 0)}
forall e: E ::
// {Seq_index(Seq_singleton(e), 0)}
{Seq_singleton(e)} // [2022-03-08 Malte] Weaker trigger to resolve Silicon issue #601
Seq_index(Seq_singleton(e), 0) == e
}

Expand Down

0 comments on commit 4ca96a4

Please sign in to comment.