cymr 0.12.0
This version reorganizes the CMR API to make it easier to use. Internally, the modules have also been reorganized to separate model-agnostic code (the general Parameters class) from model-specific code (CMR-specific parameters). This should make it easier to add support for other models in the future.
API changes:
- Saving and loading model patterns is now done using the CMR module (use
cymr.cmr.load_patterns
andcymr.cmr.save_patterns
instead ofcymr.network.load_patterns
andcymr.network.save_patterns
). - CMR parameter configuration is now specified by the model-specific
cymr.cmr.CMRParameters
class instead of the genericcymr.parameters.Parameters
class. - Reading CMR configuration files is now done using
cymr.cmr.read_config
instead ofcymr.parameters.read_json
.