-
Notifications
You must be signed in to change notification settings - Fork 4
/
Sources.mk
52 lines (50 loc) · 1.63 KB
/
Sources.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
SRC_FILES = \
main/Cc4s.cxx \
main/Options.cxx \
main/Writer.cxx \
main/Reader.cxx \
main/Setting.cxx \
main/Log.cxx \
main/Timer.cxx \
main/TensorIo.cxx \
main/TensorSet.cxx \
main/tcc/Tcc.cxx \
main/engines/DryTensor.cxx \
main/mixers/Mixer.cxx \
main/mixers/LinearMixer.cxx \
main/mixers/DiisMixer.cxx \
main/algorithms/Algorithm.cxx \
main/algorithms/Write.cxx \
main/algorithms/Read.cxx \
main/algorithms/TensorReader.cxx \
main/algorithms/TensorWriter.cxx \
main/algorithms/DefineHolesAndParticles.cxx \
main/algorithms/SliceOperator.cxx \
main/algorithms/DimensionProperty.cxx \
main/algorithms/NonZeroCondition.cxx \
main/algorithms/VertexCoulombIntegrals.cxx \
main/algorithms/SecondOrderPerturbationTheory.cxx \
main/algorithms/CoupledCluster.cxx \
main/algorithms/coupledcluster/CoupledClusterMethod.cxx \
main/algorithms/coupledcluster/Ccsd.cxx \
main/algorithms/coupledcluster/CcsdReference.cxx \
main/algorithms/coupledcluster/Drccd.cxx \
main/algorithms/CompleteTriples.cxx \
main/algorithms/PerturbativeTriplesReference.cxx \
main/algorithms/FiniteSizeCorrection.cxx \
main/algorithms/BasisSetCorrection.cxx \
main/algorithms/UegVertexGenerator.cxx \
main/algorithms/PerturbativeTriples.cxx \
#main/algorithms/coupledcluster/Ccsdt.cxx \
ifeq ($(ATRIP), no)
SRC_FILES = main/algorithms/perturbative-triples/src/atrip/Atrip.cxx
CXXFLAGS = -Isrc/main/algorithms/perturbative-triples/include/
endif
TEST_SRC_FILES = \
test/math/Antisymmetrize.cxx \
test/math/Symmetrize.cxx \
test/math/PermutaticxxnSign.cxx \
test/math/TensorUnion.cxx \
test/util/LapackGeneralEigenSystem.cxx \
test/Test.cxx \
test/algorithms/UccsdAmplitudesFromCoulombIntegrals.cxx \