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