Skip to content

Commit 1afd813

Browse files
authored
simple fix (#935)
1 parent 7c313ac commit 1afd813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/PCompiler/CompilerCore/Backend/PVerifier/Uclid5CodeGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1927,7 +1927,7 @@ private void GenerateStmt(IPStmt stmt, Machine specMachine, List<Invariant> goal
19271927

19281928
if (generateSanityChecks) {
19291929
EmitLine($"\tinvariant {InvariantPrefix}Unique_Actions(); // Failed to ensure unique action IDs at {GetLocation(fstmt)}");
1930-
EmitLine($"\tinvariant{InvariantPrefix}Increasing_Action_Count(); // Failed to ensure increasing action IDs at {GetLocation(fstmt)}");
1930+
EmitLine($"\tinvariant {InvariantPrefix}Increasing_Action_Count(); // Failed to ensure increasing action IDs at {GetLocation(fstmt)}");
19311931
EmitLine($"\tinvariant {InvariantPrefix}Received_Subset_Sent(); // Failed to ensure that received is a subset of sent at {GetLocation(fstmt)}");
19321932
}
19331933
// ensure uniqueness for the new ones too

0 commit comments

Comments
 (0)