Brandon Bocklund

Results 55 issues of Brandon Bocklund

The verbose output is helpful to see what's going on and get realtime feedback, but sometimes it's hard to find _my_ output among all of pysipfenn's output. I'd like to...

enhancement
QoL

Currently to ESPEI's fixed configuration datasets, sublattices occupied only by an endmember are represented as _not_ wrapped in a tuple. For example, consider a phase with sublattice model `(A,B):(C,D)`, the...

This code produces an infinite loop: ```python from pycalphad import variables as v from symengine import ImmutableDenseMatrix print("X SV") ImmutableDenseMatrix([v.StateVariable("X")]) print('done') ``` I traced it back to the implementation of...

bug

``` System Ni-Cr (provided by @flotang-gtt) 2 5 0 2 2 2 2 2 2 2 5 Ni Cr 58.69340000 51.99610000 6 1 2 3 4 5 6 6 1...

I/O-ChemSage-DAT

Here's a self-contained test ```python from symengine import Symbol, DenseMatrix class MySymbol(Symbol): def __getitem__(self, x): pass x = Symbol("x") y = MySymbol("y") DenseMatrix([x]) # works fine DenseMatrix([y]) # SIGSEGV ```...