Andrew Franklin
Andrew Franklin
I'm experiencing the same issue. My system info: OS: Microsoft Windows Server 2016 Standard Python: 3.7.2
Just wanted to notify people that I'm working on a solution to this.
> I expect this ticket to be closed when this one is: #473 @john-science I disagree. That issue is orthogonal to this one. I think @opotowsky's original question is great!...
I'd like to note that the global nuclides issue does **not** need to be solved before this one. They are orthogonal issues.
Looks like this was recently removed. Ran `git grep rotationDegreesCCW` to confirm.
> > Yeah totally. The original point was if we were to change it, what would we change it to? > > Oh I think the simple calcs (mean/max of...
> Another is to add some kind of larger tolerance to these diff calcs (a messy suggestion to be sure!). Could perhaps be handled with a parameter setting. I don't...
That's possible with not much more work. One possible solution: define a user-defined dictionary and a default dictionary. The two would be merged in a [ChainMap](https://docs.python.org/3/library/collections.html#chainmap-objects). Here's a sketch of...
# RE: Self-Cleaning Directories A lot of the use cases from `TemporaryDirectoryChanger` could be covered by using pytest's [`tmp_path`](https://docs.pytest.org/en/stable/how-to/tmp_path.html#the-tmp-path-fixture) fixture in combination with [`os.chdir`](https://docs.python.org/3/library/os.html#os.chdir). I'd be willing to bet that...
# RE: Load a Test Reactor I'm working on something for this. It'll be able to cache test reactors for quick reloading between test runs. It'll also be fully compatible...