diff --git a/README.md b/README.md
index 16dc6ae..0358e4b 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,14 @@
# MPC-CBF
-We propose a control framework which unifies the model predictive control and control barrier functions. This is the reference implementation of our paper:
+We propose a control framework which unifies the model predictive control and control barrier functions, where terminal cost function serves as control Lyapunov functions for stability. This is the reference implementation of our paper:
### Safety-Critical Model Predictive Control with Discrete-Time Control Barrier Function
-[PDF](https://arxiv.org/abs/2007.11718) | [Code: Double Integratror](double-integrator-2D) | [Code: Car Racing](car-racing)
+[PDF](https://arxiv.org/abs/2007.11718) | [Code: Double Integratror](double-integrator-2D) | [Code: Car Racing](https://github.com/HybridRobotics/Car-Racing)
*Jun Zeng, Bike Zhang and Koushil Sreenath*
-
-
#### Citing
If you find this code useful in your work, please consider citing:
```shell
-@article{zeng2020mpccbf,
+@article{zeng2020mpc-cbf,
title={Safety-critical model predictive control with discrete-time control barrier function},
author={Zeng, Jun and Zhang, Bike and Sreenath, Koushil},
journal={arXiv preprint arXiv:2007.11718},
@@ -18,11 +16,29 @@ If you find this code useful in your work, please consider citing:
}
```
-### Instructions
-Two independent markdown files are written to illustrate numerical examples of [double integrator](double-integrator-2D/README.md) and [racing car](car-racing/README.md).
+#### Instructions
+The 2D double integrator is assigned to reach the target position at origin while avoiding obstacles. We have three classes for different controllers: `DCLF_DCBF.m` (DCLF-DCBF), `MPC_CBF.m` (MPC-CBF) and `MPC_DC` (MPC-DC), respectively.
-### Dependencies
-#### Matlab
+Moreover, to illustrate the performance among them, we have:
+* `main.m`: Run DCLF-DCBF/MPC-CBF/MPC-DC respectively.
+* `analysis_gamma.m`: Run analysis for different hyperparameter $\gamma$.
+* `analysis_horizon.m`: Run analysis for different horizon.
+
+We illustrate the performance between DCLF-DCBF/MPC-DC/MPC-CBF
+| DCLF-DCBF | MPC-DC (N=8) |
+| --- | --- |
+| | |
+
+| MPC-CBF (N=1) | MPC-CBF (N=8) |
+| --- | --- |
+| | |
+
+and also the safety performance for different numbers of horizon and hyperparameters
+| Different hyperparameter | Different horizon |
+| --- | --- |
+| |
+
+#### Dependencies
The packages needed for running the code are [Yalmip](https://yalmip.github.io/) and [IPOPT](https://projects.coin-or.org/Ipopt/wiki/MatlabInterface).
-We also provide the zipped version of precompiled .mex files for IPOPT in the folder `packages` in case you don't have it. Unzip that file and add those .mex files into your MATLAB path.
\ No newline at end of file
+We also provide the zipped version of precompiled .mex files for IPOPT in the folder `packages` in case you don't have it. Unzip that file and add those .mex files into your MATLAB path.
diff --git a/car-racing/README.md b/car-racing/README.md
deleted file mode 100644
index cf4011c..0000000
--- a/car-racing/README.md
+++ /dev/null
@@ -1,12 +0,0 @@
-### Car racing competition
-The source codes are mainly adapted from Ugo's LMPC code and there are some lagacy features which are not used in our paper.
-
-We simulate a car racing competition between several cars, and ego car's speed profile and control input are shown as follow,
-
-
-
-
-
-
-
-The animation can be found on the top of this readme, we will release full code after the paper is accepted.
\ No newline at end of file
diff --git a/car-racing/demo.gif b/car-racing/demo.gif
deleted file mode 100644
index 3c0f414..0000000
Binary files a/car-racing/demo.gif and /dev/null differ
diff --git a/car-racing/lmpc-deviation-profile.png b/car-racing/lmpc-deviation-profile.png
deleted file mode 100644
index b4d177a..0000000
Binary files a/car-racing/lmpc-deviation-profile.png and /dev/null differ
diff --git a/car-racing/lmpc-input-profile.png b/car-racing/lmpc-input-profile.png
deleted file mode 100644
index e3a21b9..0000000
Binary files a/car-racing/lmpc-input-profile.png and /dev/null differ
diff --git a/car-racing/lmpc-speed-norm-profile.png b/car-racing/lmpc-speed-norm-profile.png
deleted file mode 100644
index c79fe05..0000000
Binary files a/car-racing/lmpc-speed-norm-profile.png and /dev/null differ
diff --git a/car-racing/lmpc-speed-profile.png b/car-racing/lmpc-speed-profile.png
deleted file mode 100644
index cb9a32d..0000000
Binary files a/car-racing/lmpc-speed-profile.png and /dev/null differ
diff --git a/double-integrator-2D/README.md b/double-integrator-2D/README.md
deleted file mode 100644
index 089626f..0000000
--- a/double-integrator-2D/README.md
+++ /dev/null
@@ -1,21 +0,0 @@
-### 2D double integrator
-The 2D double integrator is assigned to reach the target position at origin while avoiding obstacles. We have three classes for different controllers: `DCLF_DCBF.m` (DCLF-DCBF), `MPC_CBF.m` (MPC-CBF) and `MPC_DC` (MPC-DC), respectively.
-
-Moreover, to illustrate the performance among them, we have:
-* `main.m`: Run DCLF-DCBF/MPC-CBF/MPC-DC respectively.
-* `analysis_gamma.m`: Run analysis for different hyperparameter $\gamma$.
-* `analysis_horizon.m`: Run analysis for different horizon.
-
-We illustrate the performance between DCLF-DCBF/MPC-DC/MPC-CBF
-| DCLF-DCBF | MPC-DC (N=8) |
-| --- | --- |
-| | |
-
-| MPC-CBF (N=1) | MPC-CBF (N=8) |
-| --- | --- |
-| | |
-
-and also the safety performance for different numbers of horizon and hyperparameters
-| Different hyperparameter | Different horizon |
-| --- | --- |
-| |
\ No newline at end of file