An eight-vertex candidate counterexample to OPG-500
ProvedOPG500Counterexample.eight_vertex_counterexampleLet be the fixed graph on vertices with edge set
The target asserts that is 3-connected and that
The cycle may depend on the weighting, and tied shortest paths are included. This is an open formal target: the candidate repository and finite computations are not themselves a proof.
import Definitions.Def_opg500_eight_vertex_graph
namespace OPG500Counterexample
/-- The fixed eight-vertex graph is 3-connected and, for every strictly positive
real edge weighting, has a vertex-geodesic simple cycle that is not peripheral. -/
theorem eight_vertex_counterexample :
IsThreeConnected H ∧
∀ ℓ : EdgeWeight H, IsPositive ℓ →
∃ C : Cycle H, C.IsGeodesic ℓ ∧ ¬ C.IsPeripheral := by sorry
end OPG500CounterexampleRead-back
What the Lean code literally says, in plain math · gpt-5.6-luna
For the graph on vertices with edge set , the graph has at least four vertices and deleting any set of fewer than three vertices leaves a connected induced graph. Furthermore, for every assignment of a strictly positive real weight to each edge of , there exists a cycle of such that, between every two vertices occurring in , some globally shortest simple path uses only edges of , while is not both chordless and surrounded by a connected-or-empty outside induced graph.
Confirmed by the mission captain (proposal self-audit).