summaryrefslogtreecommitdiff
path: root/c++/hlbm.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++/hlbm.hpp')
-rw-r--r--c++/hlbm.hpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/c++/hlbm.hpp b/c++/hlbm.hpp
deleted file mode 100644
index 1c665ce..0000000
--- a/c++/hlbm.hpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#pragma once
-
-#include "macroscopic.hpp"
-#include "component.hpp"
-#include "equilibrium.hpp"
-
-namespace kel {
-namespace lbm {
-namespace cmpt {
-struct HLBM {};
-}
-
-/**
- * HLBM collision operator for LBM
- */
-template<typename T, typename Descriptor>
-class component<T, Descriptor, cmpt::HLBM> {
-private:
-public:
- component() = default;
-};
-
-}
-}