Some code to find ion pairs in solution. WIP.
micromamba create -f environment.yml # For the first time only
micromamba activate soluenv
rm -rf subprojects
git restore subprojects
meson setup build --wipe
pip install -e . --no-build-isolationsolvlib is the C++ library. The library graph_lib contains classes for the Network class.
import soluanalysis as solu
system = solu.solvlib.System()We test with pytest. Run it like so (in verbose mode):
pytest -vCan be used to determine ion pairs. Has bindings to the C++ library James.

