Skip to main content

Questions tagged [graphs]

For questions related to graphs, a mathematical object consisting of a set of nodes with edges connecting certain pairs of them.

Filter by
Sorted by
Tagged with
3 votes
2 answers
201 views

I’m working on an optimization problem that I believe can be framed as a graph or flow problem, but I haven’t found a good existing formulation that scales efficiently. I’d like advice on how to model ...
Teun's user avatar
  • 133
0 votes
0 answers
75 views

I am struggling to formulate this disaggregation problem as a network flow. Can anyone help me see a way to make things work? I am not fully familiar with all of the tricks and gadgets for network ...
benzuwnx's user avatar
1 vote
0 answers
69 views

I have a class of ILP questions in the form of: \begin{align*} \text{Max} \quad & c^T x \\ \text{subject to} \quad & Ax \leq b \\ & A \in \{0,-1,1\}^{(m+n+mn)*(mn+n)...
Schell Dou's user avatar
5 votes
1 answer
272 views

In this post, Erwin Kalvelagen explores how the minimum spanning tree problem can me modeled with different MIPs. The models are based on Optimal Trees (Magnanti, Wolsey). In the flow formulation II, ...
NormalFit's user avatar
  • 488
2 votes
0 answers
63 views

I would like to formulate the graph crossing minimization problem as a MI(N)LP (it's ok if it is non linear) : given a graph $G(V,E)$, what is the minimum number of edge crossings in any drawing of $G$...
NormalFit's user avatar
  • 488
5 votes
1 answer
1k views

Dijkstra's algorithm efficiently solves the shortest path problem for graphs very well. I suspect that this efficiency might imply the existence of a specially structured integer programming (IP) ...
Tuong Nguyen Minh's user avatar
0 votes
1 answer
182 views

I have a networkx.Graph-object called G. ...
HJA24's user avatar
  • 13
1 vote
0 answers
86 views

Given a sparse weighted bipartite graph, weights are reals between [0, 1]. I have to find in quick succession a Perfect Matching (any weight), followed by the Maximum Weight Perfect Matching. I obtain ...
kaldo's user avatar
  • 11
3 votes
1 answer
250 views

Let $G$ be a directed graph, and let $b : V (G) \to \mathbb{R}$ be a supply/demand function such that $\sum_{v \in V (G)} b(v) = 0$. Let $\delta^+ (v)$ and $\delta^- (v)$ denote the sets of outgoing ...
Lenart Miklavič's user avatar
3 votes
1 answer
237 views

Time-space representation is one of the effective tools for modeling problems in logistics/transportation. I am doing a session for OR practitioners where I plan to go deep into examples and tips/...
Arvind Kumar's user avatar
1 vote
0 answers
56 views

Say I have an undirected graph where each edge is tagged with a list of properties, e.g. one edge may satisfy property A and B, and another only B and C, etc. The goal is to partition the edges of the ...
SirBarkalot's user avatar
4 votes
2 answers
272 views

I have to design a network based on a profitability criteria, however I encounter some practical problems in the solving phase. Formulation of the problem We have a graph $G=(V, E)$, with subset $P$ ...
jozuelegueux's user avatar
2 votes
1 answer
73 views

A graph $G$ has nodes $V$ and edges $E$. Let's say I have found the maximum clique or all the cliques in $G$ with any algorithm, such as the Bron-Kerbosch algorithm. After a while, $E$ has been ...
OR Junior's user avatar
  • 613
3 votes
2 answers
247 views

I am working on a problem involving finding the shortest path in a Directed Acyclic Graph (DAG), where each edge's cost depends on multiple transportation modes, each with its own setup cost. I am ...
Changxin Cao's user avatar
1 vote
0 answers
103 views

Given a graph with a set of nodes and edges, the goal of the maximum independent set problem is to find the maximum number of vertices where no two vertices are adjacent. This is well-known NP-hard ...
Mostafa's user avatar
  • 2,154

15 30 50 per page
1
2 3 4 5
9