Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usadelndsoc
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JYU Condensed Matter Theory
usadelndsoc
Commits
9d6dc870
Commit
9d6dc870
authored
2 years ago
by
patavirt
Browse files
Options
Downloads
Patches
Plain Diff
Edit
parent
ca617452
No related branches found
No related tags found
No related merge requests found
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
meson.build
+6
-3
6 additions, 3 deletions
meson.build
src/action.hpp
+15
-0
15 additions, 0 deletions
src/action.hpp
src/common.h
+0
-9
0 additions, 9 deletions
src/common.h
src/common.hpp
+62
-0
62 additions, 0 deletions
src/common.hpp
src/main.cpp
+20
-1
20 additions, 1 deletion
src/main.cpp
with
103 additions
and
13 deletions
meson.build
+
6
−
3
View file @
9d6dc870
project
(
'usadelndsoc'
,
'cpp'
)
project
(
'usadelndsoc'
,
'cpp'
,
default_options
:
[
'cpp_std=c++17'
])
cppad_dep
=
dependency
(
'cppad'
)
deps
=
[
cppad_dep
]
executable
(
'main'
,
'src/main.cpp'
,
dependencies
:
deps
)
eigen3_dep
=
dependency
(
'eigen3'
)
deps
=
[
cppad_dep
,
eigen3_dep
]
executable
(
'main'
,
'src/main.cpp'
,
dependencies
:
deps
)
This diff is collapsed.
Click to expand it.
src/action.hpp
0 → 100644
+
15
−
0
View file @
9d6dc870
#ifndef ACTION_HPP_
#define ACTION_HPP_
#include
"common.hpp"
inline
ADComplex
S_2
(
Array
<
ADComplex
,
3
>
Q
)
{
size_t
i
=
2
;
return
Q
(
0u
,
i
,
2u
);
}
#endif
This diff is collapsed.
Click to expand it.
src/common.h
deleted
100644 → 0
+
0
−
9
View file @
ca617452
#ifndef COMMON_H_
#define COMMON_H_
#include
<cppad/cppad.hpp>
typedef
CppAD
::
AD
<
double
>
ADDouble
;
typedef
std
::
complex
<
ADDouble
>
ADComplex
;
#endif
This diff is collapsed.
Click to expand it.
src/common.hpp
0 → 100644
+
62
−
0
View file @
9d6dc870
#ifndef COMMON_H_
#define COMMON_H_
#include
<array>
#include
<tuple>
#include
<iostream>
#include
<cppad/cppad.hpp>
#include
<cppad/example/cppad_eigen.hpp>
#include
<Eigen/Core>
typedef
CppAD
::
AD
<
double
>
ADDouble
;
typedef
std
::
complex
<
ADDouble
>
ADComplex
;
template
<
typename
Scalar
,
int
NDim
>
class
Array
{
private:
std
::
vector
<
Scalar
>&
data_
;
std
::
array
<
size_t
,
NDim
>
shape_
;
std
::
array
<
size_t
,
NDim
>
stride_
;
protected:
template
<
typename
...
Idx
>
size_t
index
(
Idx
...
idxs
)
const
{
const
std
::
array
<
size_t
,
NDim
>
m
{
idxs
...};
size_t
idx
=
0
;
for
(
size_t
i
=
0
;
i
<
NDim
;
++
i
)
idx
+=
stride_
[
i
]
*
m
[
i
];
return
idx
;
}
public
:
Array
(
std
::
vector
<
Scalar
>&
data
,
std
::
array
<
size_t
,
NDim
>
shape
)
:
data_
(
data
),
shape_
(
shape
)
{
if
(
NDim
>
0
)
{
size_t
i
=
NDim
-
1
;
stride_
[
i
]
=
1
;
while
(
i
--
>
0
)
stride_
[
i
]
=
shape
[
i
+
1
]
*
stride_
[
i
+
1
];
}
}
template
<
typename
...
Idx
>
Scalar
&
operator
()(
Idx
...
idxs
)
{
return
data_
[
index
(
idxs
...)];
}
template
<
typename
...
Idx
>
const
Scalar
&&
operator
()(
Idx
...
idxs
)
const
{
return
data_
[
index
(
idxs
...)];
}
};
#endif
This diff is collapsed.
Click to expand it.
src/main.cpp
+
20
−
1
View file @
9d6dc870
#include
"common.h"
#include
"common.hpp"
#include
"action.hpp"
int
main
()
{
std
::
vector
<
double
>
v
(
3
*
3
*
3
);
Array
<
double
,
3
>
Q
(
v
,{
3
,
3
,
3
});
for
(
size_t
i
=
0
;
i
<
3
;
++
i
)
{
for
(
size_t
j
=
0
;
i
<
3
;
++
i
)
{
for
(
size_t
k
=
0
;
i
<
3
;
++
i
)
{
Q
(
i
,
j
,
k
)
=
i
+
j
+
k
;
}
}
}
for
(
size_t
i
=
0
;
i
<
3
;
++
i
)
{
for
(
size_t
j
=
0
;
i
<
3
;
++
i
)
{
for
(
size_t
k
=
0
;
i
<
3
;
++
i
)
{
std
::
cout
<<
Q
(
i
,
j
,
k
)
<<
std
::
endl
;
}
}
}
return
0
;
}
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