Is there an algorithm that solves the single-pair-shortest-path problem in linear time for mixed graphs (i.e. directed and undirected edges or undirected edges represented as two directed edges), with negative, real edge-weights and non-negative cycles?
Wikipedia only mentions algorithms for the single-source and all-pairs variant of the problem. I know that these solving one of these problems also solves the single-pair problem, but none of them works in linear time and with all the above criterias.
So is there a linear time algorthm for the single-pair shortest path problem with all the above criterias?