-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
Add sympy.Xor to json_serialization.py #6478
base: main
Are you sure you want to change the base?
Conversation
@@ -256,6 +256,7 @@ def default(self, o): | |||
sympy.StrictLessThan, | |||
sympy.Equality, | |||
sympy.Unequality, | |||
sympy.Xor, |
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.
Should we add other boolean operators as well, e.g. sympy.And
, sympy.Not
, sympy.Or
?
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.
This needs to go a few other places as well: https://github.com/search?q=repo%3Aquantumlib%2FCirq+strictGreaterThan&type=code
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.
This all has now been done, in #6914, so this PR can be closed now.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6478 +/- ##
=======================================
Coverage 97.75% 97.75%
=======================================
Files 1105 1105
Lines 94925 94925
=======================================
Hits 92793 92793
Misses 2132 2132 ☔ View full report in Codecov by Sentry. |
No description provided.