Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cqp_fs16
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
compphys_lectures
cqp_fs16
Commits
4d03fa6a
Commit
4d03fa6a
authored
9 years ago
by
Donjan Rodic
Browse files
Options
Downloads
Patches
Plain Diff
fix Makefile #2
parent
fae4cb01
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
exercises/ex04_solution/heised_cpp/Makefile
+3
-1
3 additions, 1 deletion
exercises/ex04_solution/heised_cpp/Makefile
exercises/ex04_solution/heised_cpp/heised.cpp
+5
-5
5 additions, 5 deletions
exercises/ex04_solution/heised_cpp/heised.cpp
with
8 additions
and
6 deletions
exercises/ex04_solution/heised_cpp/Makefile
+
3
−
1
View file @
4d03fa6a
ALPSDIR
=
/opt/alps/include/
# pick your directory
#ALPSDIR = /opt/alps/include/
ALPSDIR
=
alps-2.2.b4-src-with-boost
CXX
=
g++
CXX
=
g++
CPPFLAGS
=
-std
=
c++14
-I
${
ALPSDIR
}
-I
${
ALPSDIR
}
/boost
-I
${
ALPSDIR
}
/alps/src
CPPFLAGS
=
-std
=
c++14
-I
${
ALPSDIR
}
-I
${
ALPSDIR
}
/boost
-I
${
ALPSDIR
}
/alps/src
...
...
This diff is collapsed.
Click to expand it.
exercises/ex04_solution/heised_cpp/heised.cpp
+
5
−
5
View file @
4d03fa6a
...
@@ -36,12 +36,12 @@ private:
...
@@ -36,12 +36,12 @@ private:
};
};
SpinHalfBasis
::
SpinHalfBasis
(
unsigned
l
,
unsigned
nups
)
// l: chain length; nups: spins-ups (fixes the symmetry sector).
SpinHalfBasis
::
SpinHalfBasis
(
unsigned
l
,
unsigned
nups
)
// l: chain length; nups: spins-ups (fixes the symmetry sector).
:
index_
(
State
(
1
<<
l
),
NOT_FOUND
)
// initialize index_ to have 2^l entries each of which is the NOT_FOUND flag.
:
index_
(
State
(
1
<<
l
),
NOT_FOUND
)
// initialize index_ to have 2^l entries each of which is the NOT_FOUND flag.
{
{
// find all states with [nups] up spins
// find all states with [nups] up spins
for
(
State
s
=
0
;
s
<
index_
.
size
();
++
s
)
for
(
State
s
=
0
;
s
<
index_
.
size
();
++
s
)
{
{
if
(
alps
::
popcnt
(
s
)
==
nups
)
// if the state is in this sector keep it.
if
(
alps
::
popcnt
(
s
)
==
nups
)
// if the state is in this sector keep it.
{
{
index_
[
s
]
=
states_
.
size
();
index_
[
s
]
=
states_
.
size
();
states_
.
push_back
(
s
);
states_
.
push_back
(
s
);
...
@@ -144,7 +144,7 @@ diagonalize( const HeisenbergHamiltonian& h, unsigned nvals=1, unsigned maxiter=
...
@@ -144,7 +144,7 @@ diagonalize( const HeisenbergHamiltonian& h, unsigned nvals=1, unsigned maxiter=
Vectorspace
vspace
(
h
.
dimension
());
Vectorspace
vspace
(
h
.
dimension
());
Lanczos
solver
(
h
,
vspace
);
Lanczos
solver
(
h
,
vspace
);
Iteration
iter
(
maxiter
,
nvals
);
Iteration
iter
(
maxiter
,
nvals
);
solver
.
calculate_eigenvalues
(
iter
,
Generator
());
// call the solver for the eigenvalues.
solver
.
calculate_eigenvalues
(
iter
,
Generator
());
// call the solver for the eigenvalues.
if
(
iter
.
iterations
()
==
maxiter
)
if
(
iter
.
iterations
()
==
maxiter
)
...
@@ -197,8 +197,8 @@ void write_dat_header(std::ostream& datfile,unsigned nstates)
...
@@ -197,8 +197,8 @@ void write_dat_header(std::ostream& datfile,unsigned nstates)
int
main
()
int
main
()
{
{
int
lmin
=
2
;
int
lmin
=
5
;
int
lmax
=
20
;
int
lmax
=
5
;
double
j
=
1.
;
double
j
=
1.
;
unsigned
nstates
=
2
;
// How many of the lowest eigenvalues (energies) do you want to calculate? ( nstates = 1 ... just the ground state)
unsigned
nstates
=
2
;
// How many of the lowest eigenvalues (energies) do you want to calculate? ( nstates = 1 ... just the ground state)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment