OASIS
Open Algebra Software
Loading...
Searching...
No Matches
DefiniteIntegral.hpp
Go to the documentation of this file.
1//
2// Created by Matthew McCall on 4/30/24.
3//
4
5#ifndef DEFINITEINTEGRAL_HPP
6#define DEFINITEINTEGRAL_HPP
7
9
10namespace Oasis {
11
12template <IExpression OperandT, IExpression VariableT, IExpression LowerBoundT, IExpression UpperBoundT>
13class DefiniteIntegral final : BoundedBinaryExpression<DefiniteIntegral, OperandT, VariableT, LowerBoundT, UpperBoundT> { };
14
15} // Oasis
16
17#endif // DEFINITEINTEGRAL_HPP
Definition BoundedBinaryExpression.hpp:15
Definition DefiniteIntegral.hpp:13
Definition Add.hpp:11