OptiLine-Py 0.1.7__tar.gz → 0.1.7.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: OptiLine-Py
3
- Version: 0.1.7
3
+ Version: 0.1.7.1
4
4
  Summary: Raceline optimisation tools
5
5
  License: MIT
6
6
  Keywords: raceline,optimization,autonomous racing, zeroth-order
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "OptiLine-Py"
3
- version = "0.1.7"
3
+ version = "0.1.7.1"
4
4
  description = "Raceline optimisation tools"
5
5
  authors = [
6
6
  {name = "Amir Ali Farzin", email = "amirali77farzin@gmail.com"}
@@ -753,7 +753,7 @@ class Opt_min_CurvTime:
753
753
  normvectors=normvec_norm,
754
754
  A=M_mat,
755
755
  kappa_bound=self.kapb,
756
- w_veh=self.sfty,
756
+ w_veh=2*self.sfty,
757
757
  closed=True)
758
758
  alpha_m = quadprog.solve_qp(H, -f, -G.T, -h, 0)[0]
759
759
  return alpha_m, normvec_norm
@@ -808,7 +808,7 @@ class Opt_min_CurvTime:
808
808
  normvectors=normvec_norm,
809
809
  A=M,
810
810
  kappa_bound=kapb,
811
- w_veh=sfty,
811
+ w_veh=2*sfty,
812
812
  closed=True)
813
813
 
814
814
  alpha_m = quadprog.solve_qp(H, -f, -G.T,-h,0)[0]
@@ -1053,7 +1053,7 @@ class Opt_min_CurvTime:
1053
1053
  normvectors=normvec_norm,
1054
1054
  A=M,
1055
1055
  kappa_bound=self.kapb,
1056
- w_veh=self.sfty,
1056
+ w_veh=2*self.sfty,
1057
1057
  closed=True)
1058
1058
 
1059
1059
 
@@ -1109,7 +1109,7 @@ class Opt_min_CurvTime:
1109
1109
  normvectors=normvec_norm,
1110
1110
  A=M,
1111
1111
  kappa_bound=self.kapb,
1112
- w_veh=self.sfty,
1112
+ w_veh=2*self.sfty,
1113
1113
  closed=True)
1114
1114
 
1115
1115
 
@@ -1216,7 +1216,7 @@ class Opt_min_CurvTime:
1216
1216
  normvectors=normvec_norm,
1217
1217
  A=M,
1218
1218
  kappa_bound=self.kapb,
1219
- w_veh=self.sfty,
1219
+ w_veh=2*self.sfty,
1220
1220
  closed=True)
1221
1221
  alpha_m_0 = quadprog.solve_qp(H, -f, -G.T,-h,0)[0]
1222
1222
 
@@ -1615,7 +1615,7 @@ class Blackbox_raceline:
1615
1615
  normvectors=self._normvec,
1616
1616
  A=self._M,
1617
1617
  kappa_bound=self.kappa_bound,
1618
- w_veh=self.sfty,
1618
+ w_veh=2*self.sfty,
1619
1619
  closed=True)
1620
1620
  alpha_mc = quadprog.solve_qp(H, -f_vec, -G.T, -h_vec, 0)[0]
1621
1621
  # Clip in case QP and Blackbox box constraints differ by a rounding epsilon
File without changes