NeoN
A framework for CFD software
|
#include <Kokkos_Core.hpp>
#include "NeoN/core/error.hpp"
#include "NeoN/core/executor/executor.hpp"
#include "NeoN/core/primitives/label.hpp"
#include "NeoN/core/primitives/scalar.hpp"
#include "NeoN/core/vector/vectorFreeFunctions.hpp"
#include "NeoN/core/view.hpp"
#include <vector>
Go to the source code of this file.
Classes | |
class | NeoN::Vector< ValueType > |
A class to contain the data and executors for a field and define some basic operations. More... | |
Namespaces | |
namespace | NeoN |
Functions | |
template<typename ValueType > | |
Vector< ValueType > | NeoN::operator+ (Vector< ValueType > lhs, const Vector< ValueType > &rhs) |
Arithmetic add operator, addition of two fields. | |
template<typename ValueType > | |
Vector< ValueType > | NeoN::operator- (Vector< ValueType > lhs, const Vector< ValueType > &rhs) |
Arithmetic subtraction operator, subtraction one field from another. | |