Linux平台下编译及冗余文件删除

This commit is contained in:
2025-08-25 13:33:35 +08:00
parent a78045b4d3
commit 9f029ef7e4
4 changed files with 25 additions and 104 deletions

View File

@@ -1,17 +0,0 @@
#pragma once
#include <vector>
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;
};
}