-
-
Notifications
You must be signed in to change notification settings - Fork 563
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
Issue 1571 1 d cc opposite tabs #1581
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #1581 +/- ##
===========================================
- Coverage 97.83% 97.83% -0.01%
===========================================
Files 323 323
Lines 17924 17927 +3
===========================================
+ Hits 17536 17538 +2
- Misses 388 389 +1
Continue to review full report at Codecov.
|
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.
Nice. You could also add the __eq__
magic function to Symbol
to return Equality(a,b)
for a==b
I did try adding |
Ah right, in that case we do want to check actual equality because otherwise the clear_domain a couple of lines below causes issues. So let's leave it |
Hey, @tobykirk some of the many-particle submodel tests are failing on this PR, but only on certain builds (e.g. here). They pass ok locally and I haven't changed anything related to them - have you seen this error before?
|
I've seen this error once before and it was similar to here: only occurring on certain builds, but I think they were different builds to these - weird! It resolved itself after I pushed some unrelated commits, so never got to the bottom of it. Looks like something to do with |
Thanks, @tobykirk, removing |
Great! Strange error indeed, hopefully it's gone for good now. |
Description
Allows tabs to be placed at the bottom of the cell in 1+1D thermal models. Adds a new
Equality
binary operator that returns 1 if the nodes evaluate to the same thing and 0 otherwise.Fixes #1571
Type of change
Please add a line in the relevant section of CHANGELOG.md to document the change (include PR #) - note reverse order of PR #s. If necessary, also add to the list of breaking changes.
Key checklist:
$ flake8
$ python run-tests.py --unit
$ cd docs
and then$ make clean; make html
You can run all three at once, using
$ python run-tests.py --quick
.Further checks: