I have a graph with weights of the form $a \omega + b$ where $a,b \in \mathbb{Q}$ and $ \omega$ is an infinite value, that is, a value such that for any rational number $q$, $q \le \omega$. The ordering relation over $\mathbb{Q}$ is extended to these values by imposing that $a \omega + b \le a' \omega + b'$ if and only if $a < a'$ or $a = a'$ and $b \le b'$. Since Bellman-Ford needs an addition operation, I define the addition of two such values as $(a_1 \omega + b_1) + (a_2 \omega + b_2) = (a_1 + a_2) \omega + (b_1+b_2)$.
Would Bellman-Ford still work in this domain?