Skip to content

Commit

Permalink
graph extraction in cphydra
Browse files Browse the repository at this point in the history
  • Loading branch information
ehebrard committed Oct 4, 2010
1 parent 6032315 commit d021a69
Show file tree
Hide file tree
Showing 13 changed files with 577 additions and 296 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -68,7 +68,7 @@ release: local_install Numberjack.0.1.$(DATE).zip

Numberjack.0.1.$(DATE).zip: Numberjack.0.1.$(DATE)/src $(TARGET_RELEASE)
@echo Build archive
#rm -rf Numberjack.0.1.$(DATE)/solvers/scip
rm -rf Numberjack.0.1.$(DATE)/solvers/scip
#tar -cjf Numberjack.0.1.$(DATE).bz2 Numberjack.0.1.$(DATE)
zip -r Numberjack.0.1.$(DATE).zip Numberjack.0.1.$(DATE)
rm -rf Numberjack.0.1.$(DATE)
Expand Down
8 changes: 4 additions & 4 deletions examples/unit_tests.py
Expand Up @@ -26,12 +26,12 @@
print '******', lib_str
print '**************************************'
lib = __import__(lib_str)
param = lib.default
param['verbose'] = 0
lib_param = lib.default
lib_param['verbose'] = 0
for solver in lib.solvers:
print 'run', lib_str, 'with', solver
param['solver'] = solver
outcome[lib_str][solver] = lib.solve(param)
lib_param['solver'] = solver
outcome[lib_str][solver] = lib.solve(lib_param)

for lib in reference.keys():
print 'checking', lib+':'
Expand Down
2 changes: 1 addition & 1 deletion solvers/mistral/Makefile
Expand Up @@ -52,7 +52,7 @@ OPTFLAGS = -O3 #-m32
#OPTFLAGS = -finstrument-functions
#OPTFLAGS = -g

COMPILFLAGS = -Wall -D_UNIX -fPIC #-D_DEBUGSEARCH #-D_DEBUGSCHED -D_DEBUGMODEL # #-D_DEBUGPROPAG
COMPILFLAGS = -Wall -D_UNIX -fPIC #-D_DEBUGSEARCH #-D_DEBUGPROPAG #-D_DEBUGSCHED -D_DEBUGMODEL #

#-Wl,--hash-style=sysv
#-D_DEBUGSEARCH \
Expand Down

0 comments on commit d021a69

Please sign in to comment.