From cdc7be02c20d501ea9dcb2293844378be3525114 Mon Sep 17 00:00:00 2001 From: Guyslain <guyslain.naves@lis-lab.fr> Date: Thu, 26 Oct 2023 11:50:55 +0200 Subject: [PATCH] add description in readme --- readme.txt | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index d48c26f..3f9411e 100644 --- a/readme.txt +++ b/readme.txt @@ -1,3 +1,17 @@ +This project contains implementations in Ocaml of algorithms for +recognition of Robinson dissimilarities, as well as random generators +of dissimilarities. The primary goal is to provide an implementation +of the algorithm proposed by Carmona, Chepoi, Naves and Préa. We +actually give two implementations, in imperativeCCNP.ml (a mostly +imperative implementation) and robinsonCCNP.ml (a more functional +implementation). The two implementations are equivalent, except for +their respective performance which slightly differs from one another. + + + + + + 0) Need OCaml installed. Easy way: sudo apt-get install opam opam init @@ -11,8 +25,7 @@ see https://ocaml.org/learn/tutorials/up_and_running.html dune build 2) execute: -cat my_matrix | dune exec copoint -cat instance_1 | sed "s/,\|\[\|]//g" | dune exec copoint +cat matrices/mat1 | dune exec copoint Run test: -- GitLab