When looking around for formulating the shortest path problem as a LP I found this:
https://www.cs.princeton.edu/~rs/AlgsDS07/22LinearProgramming.pdf
At slide 39 they give an example
But in my eyes, this solution doesn't satisfy the inequalities. For example,
x_7 + 44 <= x_t
with x_7 = 15 and x_t = 50 leads to
59 <= 50
What is my misunderstanding?