https://github.com/davepagurek/StrokeStrip
Raw File
Tip revision: c9ae2ebac9ecbc6461952df58a05288bccc571a1 authored by Dave Pagurek on 19 August 2021, 15:47:13 UTC
Add script to install and run on Mac
Tip revision: c9ae2eb
Context.h
#pragma once

#include <gurobi_c++.h>

struct Context {
	Context(bool grb_log = false);
	void optimize_model(GRBModel* model) const;

	GRBEnv grb;
	bool debug_viz = false;
	bool cut = false;
	bool rainbow = false;
	bool widths = false;
	bool taper_widths = false;
};
back to top