Skip to content

Commit

Permalink
Include TLCState#workerId and TLCState#uid in TLCState#deepCopy().
Browse files Browse the repository at this point in the history
See related commit e1ae0b9

[Refactor][TLC]
  • Loading branch information
lemmy committed Feb 22, 2021
1 parent 0a517b6 commit 45d8275
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tlatools/org.lamport.tlatools/src/tlc2/tool/TLCState.java
Expand Up @@ -86,6 +86,8 @@ public IValue lookup(String var) {

protected TLCState deepCopy(TLCState copy) {
copy.level = this.level;
copy.workerId = this.workerId;
copy.uid = this.uid;
return copy;
}

Expand Down

0 comments on commit 45d8275

Please sign in to comment.