At first, Sorry for my english :(
my graph's spec is
As I know dijsktra algorithm cannot find shortest path of "cyclic" graph. But there is no that restriction in BGL docs (https://www.boost.org/doc/libs/1_77_0/libs/graph/doc/dijkstra_shortest_paths.html)
So I wonder I can find shortest paths of this graph by using dijkstra_shortest_paths in BGL.
thanks.
Yes, you can in fact use the method.
Use the Bellman-Ford algorithm for the case when some edge weights are negative
See also https://cs.stackexchange.com/questions/101637/dijkstra-s-shortest-path-algorithm