From 62983812fea82680926d9c42a18ca270a1d56ee9 Mon Sep 17 00:00:00 2001 From: kilian Date: Fri, 18 Sep 2026 09:41:16 +0200 Subject: [PATCH] ILP/readme.md aktualisiert --- ILP/readme.md | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/ILP/readme.md b/ILP/readme.md index 5bbaa43..51a8b50 100644 --- a/ILP/readme.md +++ b/ILP/readme.md @@ -1,10 +1,23 @@ +###NMR Similarity: +The nmrSimilarityExperimental.py script requires: ```console -foo@bar:~$ nmrSimilarityExperimental.py -foo +nmrproject/ILP:~$ pip install numpy ``` -The result will be three list, which are in the experimentalILP.py script. +It is started using: +```console +nmrproject/ILP:~$ nmrSimilarityExperimental.py +``` +In all but the nmrSimilarityExperimental.py script, there is a boolean called normalize in the main() function determining if the resulting crosscorrelation should be normalized. +The result will be three list, which are used in the main() function of in the experimentalILP.py script. +###ILP Solution: +The nmrSimilarityExperimental.py script requires: ```console -foo@bar:~$ python3 experimentalILP.py -foo +nmrproject/ILP:~$ pip install gurobipy ``` +Within the main() function there are the boolean normalize determining if the resulting crosscorrelation should be normalized and mode as a choice between the two modes: "Product"[0] and "Average"[1] determining how the edgelikelihood is to be detemined. +It is started using: +```console +nmrproject/ILP:~$ python3 experimentalILP.py +``` +