-
Notifications
You must be signed in to change notification settings - Fork 44
Implement logging of applied equations as JSON in Kore #3818
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fdb2a3a
to
b1a3c39
Compare
b1a3c39
to
f05f39d
Compare
9fcf9cb
to
25fd8bd
Compare
Subsumed by #3824 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes #3817
Fixes #3815
Changes to Kore:
Kore.JsonRpc.ServerState
type to contain an optional handle to write the simplification logs intoKore.Simplify.SimplifyEnv
type to hold an optional handle as well, instead of a boolean flag.Kore.Equation.Application.applyEquation
, if the simplified contains the handle, output the trace as JSON into it. Include only the unique ID, not the termsChanges to
Proxy.hs
anddev-tools/kore-rpc-dev/Server.hs
:-l SimplifyJson
is set, thread the handle tostderr
/log file through to Kore'sServerState
Proxy.hs
, do not modify the request parameters when falling back to Kore or making internal simplify requests. Do not output logs received form Kore at-l SimplifJson
anymore: Kore will now do it itselfNote that the behavior of
kore-rpc-booster -l SimplifyJson
is tested by thebooster/test/rpc-intergration/test-log-simplify-json
integration test, which compares the log to a golden file. The changes in this PR do not break this test.