MPS-Basic
Loading...
Searching...
No Matches
mps_factory.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "input.hpp" // Assuming Input and other necessary headers are included
4#include "mps.hpp" // The MPS class
5
6class MPSFactory {
7public:
8 static MPS create(const Input& input);
9};
static MPS create(const Input &input)
MPS simulation class.
Definition mps.hpp:25
Represents the input data for MPS simulation.
Definition input.hpp:12