Files
solver/MbDCode/IndependentVariable.h
2023-05-27 21:43:09 -06:00

14 lines
230 B
C++

#pragma once
#include "Variable.h"
namespace MbD {
class IndependentVariable : public Variable
{
public:
IndependentVariable();
Symsptr differentiateWRT(Symsptr sptr, Symsptr var) override;
};
}