summaryrefslogtreecommitdiff
path: root/c++/examples
diff options
context:
space:
mode:
Diffstat (limited to 'c++/examples')
-rw-r--r--c++/examples/cavity_2d.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/c++/examples/cavity_2d.cpp b/c++/examples/cavity_2d.cpp
index 88e53fe..2899f88 100644
--- a/c++/examples/cavity_2d.cpp
+++ b/c++/examples/cavity_2d.cpp
@@ -32,6 +32,9 @@ using Cell = CellData<
}
+/**
+ * 2 A pull pattern
+ */
template<size_t D, size_t Q>
class collision {
public:
@@ -57,7 +60,6 @@ public:
}
return eq;
-
}
void compute_rho_u(
@@ -178,5 +180,7 @@ int main(){
std::cout<<std::endl;
+
+
return 0;
}