mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-28 01:59:59 +01:00
14 lines
178 B
C++
14 lines
178 B
C++
#ifndef SOLVER_EQUATION_h
|
|
#define SOLVER_EQUATION_h
|
|
|
|
#include "../shared/expression_model.h"
|
|
|
|
namespace Solver {
|
|
|
|
class Equation : public Shared::ExpressionModel {
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|