PrincetonUniversity / Iseult

Python plotting program for Tristan-MP
https://princetonuniversity.github.io/Iseult/
GNU General Public License v3.0
7 stars 7 forks source link

Fix 2D User Defined Plots (issue #13) #27

Closed bcaddy closed 2 months ago

bcaddy commented 2 months ago

Summary

It appears that the issue was the usage of the bitwise not operator (~) in a handful of places where logical not operator (not) should have been used. In addition to the user-defined plots issue this might clear up some other issues or odd behavior in other places that were affected by this issue.

closes #13

Instructions for Getting This Branch

$ git clone git@github.com:bcaddy/Iseult.git bobs-iseult
$ cd bobs-iseult
$ git checkout --track origin/master-iss13
bcaddy commented 2 months ago

@pcrumley, these are the changes I was talking about

ntoles commented 2 months ago

Vassilis confirmed that the bug is gone! Thank you!