Files
solver/MbDCode/FunctionWithManyArgs.h
2023-05-12 21:50:11 -06:00

19 lines
597 B
C++

#pragma once
#include "Function.h"
namespace MbD {
class FunctionWithManyArgs : public Function
{
//terms
public:
FunctionWithManyArgs(std::shared_ptr<Symbolic> term);
FunctionWithManyArgs(std::shared_ptr<Symbolic> term, std::shared_ptr<Symbolic> term1);
FunctionWithManyArgs(std::shared_ptr<Symbolic> term, std::shared_ptr<Symbolic> term1, std::shared_ptr<Symbolic> term2);
FunctionWithManyArgs(std::shared_ptr<std::vector<std::shared_ptr<Symbolic>>> _terms);
std::shared_ptr<std::vector<std::shared_ptr<Symbolic>>> terms;
};
}