File tree Expand file tree Collapse file tree
src/main/kotlin/be/ugent/topl/mio Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -281,9 +281,7 @@ class MultiverseDebugger(
281281
282282 override fun checkpointsUpdated () {
283283 super .checkpointsUpdated()
284- val newCheckpoints = checkpoints.toList()
285- if (newCheckpoints.size > len)
286- println (" Checkpoints: ${newCheckpoints.subList(len, newCheckpoints.size)} " )
284+ val newCheckpoints = checkpoints.subList(0 , checkpoints.size)
287285 val change = newCheckpoints.size - len
288286 len = newCheckpoints.size
289287
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ import java.io.File
44import java.util.*
55
66data class WasmInfo (
7- val choicepoints : List <Int >,
8- val after_choicepoints : List <Int >,
9- val primitive_calls : List <Int >,
10- val after_primitive_calls : List <Int >,
7+ val choicepoints : Set <Int >,
8+ val after_choicepoints : Set <Int >,
9+ val primitive_calls : Set <Int >,
10+ val after_primitive_calls : Set <Int >,
1111 val primitive_fidx_mapping : List <String >
1212)
1313data class WasmBinary (val file : File , val metadata : WasmInfo )
You can’t perform that action at this time.
0 commit comments