Morpheus 1.0.0
Dynamic matrix type and algorithms for sparse matrices
Loading...
Searching...
No Matches
Morpheus_Print.hpp
1
24#ifndef MORPHEUS_PRINT_HPP
25#define MORPHEUS_PRINT_HPP
26
27#include <impl/Morpheus_Print_Impl.hpp>
28#include <impl/Dynamic/Morpheus_Print_Impl.hpp>
29
30namespace Morpheus {
31
32template <typename Printable, typename Stream>
33void print(const Printable& p, Stream& s) {
34 Impl::print(p, s);
35}
36
37template <typename Printable>
38void print(const Printable& p) {
39 Morpheus::print(p, std::cout);
40}
41
42} // namespace Morpheus
43
44#endif // MORPHEUS_PRINT_HPP
Generic Morpheus interfaces.
Definition: dummy.cpp:24