"vscode:/vscode.git/clone" did not exist on "8b10c601680cf2090f95e2819bee5a86a3e20045"
simplify_algebra.hpp 420 Bytes
Newer Older
Paul's avatar
Paul committed
1
2
3
4
#ifndef MIGRAPH_GUARD_RTGLIB_SIMPLIFY_ALGEBRA_HPP
#define MIGRAPH_GUARD_RTGLIB_SIMPLIFY_ALGEBRA_HPP

#include <string>
5
#include <migraph/config.hpp>
Paul's avatar
Paul committed
6

7
namespace migraph { inline namespace MIGRAPH_INLINE_NS {
Paul's avatar
Paul committed
8
9
10
11
12
13
14
15
16

struct program;

struct simplify_algebra
{
    std::string name() const { return "simplify_algebra"; }
    void apply(program& p) const;
};

17
} // inline namespace MIGRAPH_INLINE_NS
Paul's avatar
Paul committed
18
19
20
} // namespace migraph

#endif