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.
This pull request introduces a feature to optionally print debug information to a file instead of standard output.
Key changes include:
Command Structures:
print_to_file
toProveCmd
andVerifyConstraintsCmd
structs to enable printing debug information to a file.Mode Initialization:
StdMode
struct and its constructor to include theprint_to_file
flag.StdMode::new
calls to accommodate the newprint_to_file
parameter.Debug Printing:
print_debug_info
function to handle writing to a file if theprint_to_file
flag is set, including creating the necessary directory and file.print_debug_info
inStdProd
andStdSum
implementations to pass theprint_to_file
flag.These changes ensure that debug information can be optionally redirected to a file, improving flexibility and usability in different debugging scenarios.