Get Started
Installation
We recommend using SafePilot via Docker. Please refer to Docker Documentation for more information. After activating docker on your computer, get the docker image using the following command:
docker pull wxu3/safepilot:0.1.2
After starting the container based on the image, get into the virtual environment using the following command:
conda activate plan
(Optional) If you prefer to manually configure the environment, we recommend setting it up within a virtual environment. Please refer to Anaconda Documentation for more information. After activating your virtual environment, install the required packages according to dependencies.txt.
After configuring the environment, use the following command to install SafePilot:
git clone https://github.com/WeizheSyr/SafePilot.git
After installing SafePilot, you can use the following command to run hello_safepilot.py
to verify if the environment is configured properly.
python hello_safepilot.py
Important
SafePilot requires linux and does not support Apple M-Series CPUs.
Basic Concepts
First-order logic (FOL)
First-Order Logic (FOL), also known as Predicate Logic, is a formal system used in mathematics, philosophy, linguistics, and computer science to express statements about objects and their relationships. FOL extends propositional logic by including quantifiers (like “for all” (∀) and “there exists” (∃)) and predicates, which can express properties of objects and relations between them. For more information, please refer to First-order logic wiki.
Linear temporal logic (LTL)
Linear Temporal Logic (LTL) is a type of formalism used to describe sequences of events in a temporal (time-based) context. LTL is commonly used in the verification of systems, such as software or hardware, where the order of events matters. LTL includes temporal operators like “G” (Globally, meaning “always”), “F” (Finally, meaning “eventually”), “X” (Next, meaning “in the next state”), and “U” (Until). For more information, please refer to Linear temporal logic wiki.
Z3
Z3 is a theorem prover from Microsoft Research. We utilize the Z3 Python API to verify whether the output of the LLM satisfies the FOL constraints. Please refer to Z3 for more information.
Spot
Spot is a C++17 library for LTL, ω-automata manipulation and model checking. We utilize the Spot Python API to verify whether the output of the LLM satisfies the LTL constraints. Please refer to Spot for more information.
Q&A
TypeError: ‘max_iters’ is an invalid keyword argument for this function
Line 149 in src/cpsim/controllers/LP_cvxpy.py “max_iter” to “max_iters” or “max_iters” to “max_iter”
NameError: name ‘imath’ is not defined
go to “anaconda3/envs/demo3/lib/python3.8/site-packages/cpsim/models/nonlinear/vessel.py” in your anaconda’s path add “from interval import imath, interval” in line 8.