Mercurial > hg > camir-ismir2012
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cc4b1211e677 |
---|---|
1 % These C functions were written by Ilya Shpitser. | |
2 | |
3 if isunix | |
4 mex -c elim.c; | |
5 mex -c cell.c; | |
6 mex -c map.c; | |
7 mex -DUNIX best_first_elim_order.c elim.o cell.o map.o; | |
8 mex -DUNIX triangulate.c elim.o cell.o map.o; | |
9 else | |
10 mex -c elim.c; | |
11 mex -c cell.c; | |
12 mex -c map.c; | |
13 mex best_first_elim_order.c elim.obj cell.obj map.obj; | |
14 mex triangulate.c elim.obj cell.obj map.obj; | |
15 end | |
16 |