分支定界法基本框架

This commit is contained in:
2025-05-23 17:59:24 +08:00
parent 26ac3ddebd
commit d4456e9632
7 changed files with 353 additions and 98 deletions

View File

@ -1,5 +1,17 @@
#pragma once
#include <vector>
class Node {
namespace sv {
class Var;
class Model;
class Node
{
public:
Model* mdl;
double lower_bound;
double upper_bound;
};
bool is_integer;
std::vector<Var> branch_list;
};
}