annotate toolboxes/FullBNT-1.0.7/bnt/installC_graph.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
rev   line source
Daniel@0 1 % These C functions were written by Ilya Shpitser.
Daniel@0 2
Daniel@0 3 if isunix
Daniel@0 4 mex -c elim.c;
Daniel@0 5 mex -c cell.c;
Daniel@0 6 mex -c map.c;
Daniel@0 7 mex -DUNIX best_first_elim_order.c elim.o cell.o map.o;
Daniel@0 8 mex -DUNIX triangulate.c elim.o cell.o map.o;
Daniel@0 9 else
Daniel@0 10 mex -c elim.c;
Daniel@0 11 mex -c cell.c;
Daniel@0 12 mex -c map.c;
Daniel@0 13 mex best_first_elim_order.c elim.obj cell.obj map.obj;
Daniel@0 14 mex triangulate.c elim.obj cell.obj map.obj;
Daniel@0 15 end
Daniel@0 16