-
Notifications
You must be signed in to change notification settings - Fork 979
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
Improve echidna printer perf #2064
Conversation
@@ -443,7 +442,7 @@ def output(self, filename: str) -> Output: # pylint: disable=too-many-locals | |||
"functions_relations": functions_relations, | |||
"constructors": constructors, | |||
"have_external_calls": external_calls, | |||
"call_a_parameter": call_parameters, | |||
# "call_a_parameter": call_parameters, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is this commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It needs data dependency and this PR disables computing data dependency for the echidna printer. call_a_parameter
is not used in echidna.
Echidna might need constant from the tests themselves ;)
No description provided.