Skip to content

Commit

Permalink
Add new function signatures to ArrayOperations.h
Browse files Browse the repository at this point in the history
  • Loading branch information
rfranke committed Aug 25, 2016
1 parent 7ce61b8 commit a543be3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SimulationRuntime/cpp/Include/Core/Math/ArrayOperations.h
Expand Up @@ -66,6 +66,9 @@ void multiply_array_elem_wise(const BaseArray<T> &leftArray, const BaseArray<T>
template <typename T>
void divide_array(const BaseArray<T>& inputArray, const T &b, BaseArray<T>& outputArray);

template <typename T>
void divide_array_elem_wise(const BaseArray<T> &leftArray, const BaseArray<T> &rightArray, BaseArray<T> &resultArray);

template <typename T>
void fill_array(BaseArray<T>& inputArray, T b);

Expand All @@ -84,6 +87,9 @@ void subtract_array_scalar(const BaseArray<T>& inputArray, T b, BaseArray<T>& ou
template <typename T>
void add_array(const BaseArray<T>& leftArray, const BaseArray<T>& rightArray, BaseArray<T>& resultArray);

template <typename T>
void add_array_scalar(const BaseArray<T>& inputArray, T b, BaseArray<T>& outputArray);

template <typename T>
void usub_array(const BaseArray<T>& a , BaseArray<T>& b);

Expand Down

0 comments on commit a543be3

Please sign in to comment.