STORMM Source Documentation
Loading...
Searching...
No Matches
vector_report.h
1// -*-c++-*-
2#ifndef STORMM_VECTOR_REPORT_H
3#define STORMM_VECTOR_REPORT_H
4
5#include <vector>
6#include "copyright.h"
7#include "Parsing/polynumeric.h"
8
9namespace stormm {
10namespace testing {
11
12using parse::NumberFormat;
13using parse::PolyNumeric;
14
23std::string vectorAlignmentReport(const std::vector<PolyNumeric> &va,
24 const std::vector<PolyNumeric> &vb, NumberFormat data_format,
25 double tol);
26
27} // namespace testing
28} // namespace stormm
29
30#endif