@@ -337,12 +337,13 @@ Not all backends support logging processing time, and some won't have the differ
337
337
"params" : {
338
338
"antecedent" : {"format" : " KORE" , "version" : 1 , "term" : {}},
339
339
"consequent" : {"format" : " KORE" , "version" : 1 , "term" : {}},
340
- "module" : " MODULE-NAME"
340
+ "module" : " MODULE-NAME" ,
341
+ "log-timing" : true
341
342
}
342
343
}
343
344
```
344
345
345
- Optional parameters: ` module ` (main module name)
346
+ Optional parameters: ` module ` (main module name), ` log-timing `
346
347
347
348
### Error Response:
348
349
@@ -390,7 +391,8 @@ If the implication holds, `satisfiable` is `true` and `condition` contains a wit
390
391
"condition" : {
391
392
"substitution" : {"format" : " KORE" , "version" : 1 , "term" : {}},
392
393
"predicate" : {"format" : " KORE" , "version" : 1 , "term" : {}}
393
- }
394
+ },
395
+ "logs" : []
394
396
}
395
397
}
396
398
```
@@ -403,7 +405,8 @@ If the implication cannot be shown to hold, `satisfiable` is false.
403
405
"id" : 1 ,
404
406
"result" : {
405
407
"implication" : {"format" : " KORE" , "version" : 1 , "term" : {}},
406
- "satisfiable" : false
408
+ "satisfiable" : false ,
409
+ "logs" : []
407
410
}
408
411
}
409
412
```
@@ -429,12 +432,13 @@ indicating that the program configuration can be rewritten further => `satisfiab
429
432
"method" : " simplify" ,
430
433
"params" : {
431
434
"state" : {"format" : " KORE" , "version" : 1 , "term" : {}},
432
- "module" : " MODULE-NAME"
435
+ "module" : " MODULE-NAME" ,
436
+ "log-timing" : true
433
437
}
434
438
}
435
439
```
436
440
437
- Optional parameters: ` module ` (main module name)
441
+ Optional parameters: ` module ` (main module name), ` log-timing `
438
442
439
443
### Error Response:
440
444
@@ -447,7 +451,8 @@ Same as for execute
447
451
"jsonrpc" : " 2.0" ,
448
452
"id" : 1 ,
449
453
"result" : {
450
- "state" : {"format" : " KORE" , "version" : 1 , "term" : {}}
454
+ "state" : {"format" : " KORE" , "version" : 1 , "term" : {}},
455
+ "logs" : []
451
456
}
452
457
}
453
458
```
0 commit comments