ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/OpenMD/branches/devel_omp/src/math/Makefile.in
Revision: 1402
Committed: Fri Jan 8 17:15:27 2010 UTC (15 years, 6 months ago) by chuckv
Original Path: trunk/src/math/Makefile.in
File size: 543 byte(s)
Log Message:
Added preliminary code for Alpha Hull calculation using qhull.
Added preliminary support to SMIPD to support Alpha Hull.
Alpha Hull does not yet add the correct things to triangle to be returned to SMPID. 
Preliminary changes for shadow hamiltonian integrator.
Chages to md files so they will work in openMD. 

File Contents

# User Rev Content
1 chuckv 1187 Package = math
2    
3     MySource = \
4 cpuglis 1195 ParallelRandNumGen.cpp \
5     SeqRandNumGen.cpp \
6     RealSphericalHarmonic.cpp \
7     SphericalHarmonic.cpp \
8     ChebyshevT.cpp \
9     ChebyshevU.cpp \
10     LegendrePolynomial.cpp \
11 cli2 1349 RMSD.cpp \
12 cpuglis 1195 linearAlgebra.F90 \
13     Wigner3jm.F90
14 chuckv 1187
15 chuckv 1261 Modules= \
16     linearAlgebra
17    
18 chuckv 1199 USE_QHULL = @USE_QHULL@
19 chuckv 1187
20 gezelter 1380 ifeq "$(USE_QHULL)" "yes"
21 chuckv 1402 Source = $(MySource) ConvexHull.cpp AlphaHull.cpp Triangle.cpp
22 chuckv 1187 else
23 chuckv 1199 Source = $(MySource)
24     endif
25 chuckv 1187
26 gezelter 1225 ParallelSource = \
27     ParallelRandNumGen.cpp
28 chuckv 1203
29 chuckv 1187 RmiSource =
30    
31     Main =
32    
33     DEV_ROOT=../..
34     include $(DEV_ROOT)/make/Makefile
35