Skip to content

Instantly share code, notes, and snippets.

@yifeiyin
Created December 25, 2016 07:49
Show Gist options
  • Save yifeiyin/f104b43df72d069b8a7036a75661190a to your computer and use it in GitHub Desktop.
Save yifeiyin/f104b43df72d069b8a7036a75661190a to your computer and use it in GitHub Desktop.
struct Variable { Type value, bool flag };
class Problem
{
private:
int NumProblem;
Variable * pvars;
public:
Problem(int n) : NumProblem(n)
{
Variable = new Variable (NumProblem);
for (int i = 0; i < NumProblem; i++)
{
}
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment