6b8a7ab582
Sync public mirror / sync (push) Failing after 29s
almost complete. Need to doublecheck names for functions in *_serial.h
22 lines
426 B
C++
22 lines
426 B
C++
#pragma once
|
|
|
|
#include "./core/omp_config.h"
|
|
#include "detail/equal_serial.h"
|
|
|
|
|
|
|
|
namespace numerics{
|
|
|
|
// ---------------- equal ----------------
|
|
template <typename T>
|
|
inline bool equal(const utils::Vector<T>& v, const utils::Vector<T>& p) {
|
|
return detail::equal_serial(v, p);
|
|
}
|
|
|
|
template <typename T>
|
|
inline bool equal(const utils::Matrix<T>& A, const utils::Matrix<T>& B) {
|
|
return detail::equal_serial(A, B);
|
|
}
|
|
|
|
|
|
} |