COMPILING better readable

This commit is contained in:
Nicole Dresselhaus 2014-04-28 12:21:59 +02:00
parent 605a6f3d30
commit 92508da7c1
No known key found for this signature in database
GPG Key ID: BC16D887851A1A80

View File

@ -1,13 +1,23 @@
# Compiling hgraph # Compiling hgraph
1. initialize the sandbox 1. initialize the sandbox
cabal sandbox init cabal sandbox init
2. install dependencies 2. install dependencies
cabal install --only-dependencies cabal install --only-dependencies
3. build package 3. build package
cabal build cabal build
4. Optional build documentation (Requires haddock - installable with cabal install haddock) 4. Optional build documentation (Requires haddock - installable with cabal install haddock)
cabal haddock cabal haddock
5. Run with 5. Run with
./hgraph input.mat input.adj weights.p +RTS -N<Number of Cores>
./hgraph sampledata.adj sampledata.adj.atr sampledata.p +RTS -N<Number of Cores>
and redirect the output into desired target. and redirect the output into desired target.