Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@
#===========================================================
#Dirac
#CPLUSPLUS =CXX -O3 -w -ffast-math -funroll-loops
CPLUSPLUS = /usr/mpi/intel/openmpi-1.4.1/bin/mpicxx
CPLUSPLUS = icpc
#CPLUSPLUS_GPROF = g++ -gp
#CPLUSPLUS_MPI = /opt/openmpi/bin/mpicxx -O3 -w
CPLUSPLUS_MPI=/usr/mpi/intel/openmpi-1.4.1/bin/mpicxx
CPLUSPLUS_MPI = mpiicpc
#Einstein
#CPLUSPLUS_MPI = /opt/openmpi-intel9/bin/mpicxx -O3 -w

LIBS=-L/opt/intel/cmkl/10.2.5.035/lib/em64t -i-dynamic -Wl,--start-group -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -Wl,--end-group -openmp -lpthread \
#LIBS=-L/opt/intel/cmkl/10.2.5.035/lib/em64t -i-dynamic -Wl,--start-group -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -Wl,--end-group -openmp -lpthread \

LIBS=-L/opt/intel/cmkl/10.2.5.035/lib/em64t -Wl,--start-group -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -Wl,--end-group

TOOLS_OBJS=src_tools/mathzone.o \
src_tools/matrix.o \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ using namespace std;
#include "../src_tools/matrix3.h"
#include "../src_tools/complexmatrix.h"
#include "../src_tools/complexarray.h"
#include "../src_tools/module_external/lapack_connector.h"
#include "../src_tools/lapack_connector.h"
#include "../src_tools/Random.h"
#include "../src_tools/timer.h"// added 2009-4-17
#include "../src_tools/inverse_matrix.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@ class ComplexArray

void zero_out(void);

const int getSize() const
int getSize() const
{ return size;}

const int getDim() const
int getDim() const
{ return dim;}

const int getBound1() const
int getBound1() const
{ return bound1;}

const int getBound2() const
int getBound2() const
{ return bound2;}

const int getBound3() const
int getBound3() const
{ return bound3;}

const int getBound4() const
int getBound4() const
{ return bound4;}

static const int getArrayCount(void)
int getArrayCount(void)
{ return arrayCount;}

private:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ class IntArray

void zero_out(void);

const int getSize() const{ return size;}
const int getDim() const{ return dim;}
const int getBound1() const{ return bound1;}
const int getBound2() const{ return bound2;}
const int getBound3() const{ return bound3;}
const int getBound4() const { return bound4;}
const int getBound5() const { return bound5;}
const int getBound6() const { return bound6;}
int getSize() const{ return size;}
int getDim() const{ return dim;}
int getBound1() const{ return bound1;}
int getBound2() const{ return bound2;}
int getBound3() const{ return bound3;}
int getBound4() const { return bound4;}
int getBound5() const { return bound5;}
int getBound6() const { return bound6;}

static const int getArrayCount(void)
int getArrayCount(void)
{ return arrayCount;}

private:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,25 +35,25 @@ class realArray

void zero_out(void);

const int getSize() const
int getSize() const
{ return size;}

const int getDim() const
int getDim() const
{ return dim;}

const int getBound1() const
int getBound1() const
{ return bound1;}

const int getBound2() const
int getBound2() const
{ return bound2;}

const int getBound3() const
int getBound3() const
{ return bound3;}

const int getBound4() const
int getBound4() const
{ return bound4;}

static const int getArrayCount(void)
int getArrayCount(void)
{ return arrayCount;}

private:
Expand Down
Loading