Skip to content

Commit

Permalink
Updating makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarriault committed Nov 1, 2011
1 parent d357100 commit 8c2eb46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Pulsar/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ Params PulsarParams(real RLC, real k, real mu, real Omega, real alpha, real zeta

int main (int argc, const char * argv[])
{
Pulsar(24, 0.125, 1, "pulsar-test", PulsarParams(4., 1., 1., 0.75, 0., 1.)).Run();
Pulsar(48, 0.125, 2, "pulsar-test", PulsarParams(25., 1., 1., 0.75, 0., 1.)).Run();
/* for ( real Omega = 0.5; Omega < 0.61; Omega += 0.01 )
Pulsar(12, 0.125, 1, "pulsar-test", PulsarParams(1., 1., Omega, 0., 1.)).Run();*/
// insert code here...
Expand Down
2 changes: 2 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ CC=g++
LIBS=-lhdf5 -lhdf5_cpp -fopenmp
STD=-O3

all: lib Pulsar

Pulsar: Pulsar/main.cpp
${CC} Pulsar/main.cpp -lT3nsors ${LIBS} ${STD} -o Pulsar.o
lib: T3nsors/*.h T3nsors/*.cpp
Expand Down

0 comments on commit 8c2eb46

Please sign in to comment.