Skip to content

Commit

Permalink
Added first version of DiscreteSymmetry.
Browse files Browse the repository at this point in the history
Does not work at this stage.
  • Loading branch information
Matthias Peschke committed Mar 28, 2024
1 parent 127b753 commit 951a67b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions include/Xped/Symmetry/DiscreteSymmetry.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#include <array>

#include "Xped/Core/Tensor.hpp"

namespace Xped {

template <typename Scalar, typename InternalSymmetry>
class C4v
{
public:
std::array<Tensor<Scalar, 4, 4, InternalSymmetry>, 8> RotOps{};
std::size_t dimension();
auto Projector();
};

} // namespace Xped

0 comments on commit 951a67b

Please sign in to comment.