Skip to content

Commit

Permalink
Reformatted code
Browse files Browse the repository at this point in the history
  • Loading branch information
thetabotmaintainer[bot] committed Nov 17, 2023
1 parent badcc43 commit 1361f2f
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,10 @@ fun valToState(xcfa: XCFA, val1: Valuation): XcfaState<ExplState> {
map[i++] = x
}
return XcfaState(
xcfa=xcfa,
xcfa = xcfa,
processes = mapOf(Pair(0, XcfaProcessState(
locs = LinkedList(listOf(map[(valMap[valMap.keys.first { it.name == "__loc_" }] as IntLitExpr).value.toInt()])),
locs = LinkedList(
listOf(map[(valMap[valMap.keys.first { it.name == "__loc_" }] as IntLitExpr).value.toInt()])),
varLookup = LinkedList(),
))),
ExplState.of(
Expand Down

0 comments on commit 1361f2f

Please sign in to comment.