Mercurial > hg > camir-aes2014
comparison toolboxes/FullBNT-1.0.7/bnt/installC_graph.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e9a9cd732c1e |
---|---|
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 |