Files
solver/OndselSolver/StepFunction.h
2023-11-06 18:00:24 -07:00

22 lines
806 B
C++

/***************************************************************************
* Copyright (c) 2023 Ondsel, Inc. *
* *
* This file is part of OndselSolver. *
* *
* See LICENSE file for details about copyright. *
***************************************************************************/
#pragma once
#include "PiecewiseFunction.h"
namespace MbD {
class StepFunction : public PiecewiseFunction
{
public:
StepFunction(Symsptr var, std::shared_ptr<std::vector<double>> consts, std::shared_ptr<std::vector<double>> trans);
};
}