A simple car controller that is formally proven to always keep the car on the road in the face of noisy sensor data and an unpredictable cross-wind. The specification is verified in Marabou and can then be exported to Agda and combined with a larger proof to prove that the car never leaves the road. A full description of the setup can be found in Section 2.1 of the Vehicle paper).
This folder contains the following files:
-
controller.onnx
- the neural network used to implement the controller. -
windController.vcl
- the specification describing the desired behaviour. -
agdaProof/SafetyProof.agda
- the Agda proof the car never leaves the road.
The controller can be verified against the specification by running the following command:
vehicle verify \
--specification examples/windController/windController.vcl \
--network controller:examples/windController/controller.onnx \
--verifier Marabou \
--cache examples/windController/verificationResult
where the last line tells Vehicle where to write out the result of the verification which can then be used by Agda in the next step.
The intermediate Marabou queries can be found in examples/windController/verificationResult
.
The (verified) specification may then be compiled to Agda by running the command:
vehicle export \
--target Agda \
--cache examples/windController/verificationResult \
--output examples/windController/agdaProof/WindControllerSpec.agda
The full proof safety which makes uses of the generated Agda version of the specification in agdaProof/WindControllerSpec.agda
is found in agdaProof/SafetyProof.agda
.
The outputs of the above Vehicle commands can be found in the test suite: