This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct Variable { Type value, bool flag }; | |
class Problem | |
{ | |
private: | |
int NumProblem; | |
Variable * pvars; | |
public: | |
Problem(int n) : NumProblem(n) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <fstream> | |
#include <string> | |
#include "Mathematic.h" | |
typedef double Type | |
const int NUM_VAR = 20; |
NewerOlder