Skip to content

Commit 2a20c6f

Browse files
authored
Merge pull request #125 from Phylliade/release/v3.3.1
IK: Remove unused optimization_method parameter
2 parents 7aecdb4 + 35fadb9 commit 2a20c6f

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ jobs:
2626
strategy:
2727
max-parallel: 4
2828
matrix:
29-
python-version: [3.6, 3.7, 3.8, 3.9]
29+
# Note: We need to quote '3.10' otherwise it's interpreted as as number, e.g. 3.1
30+
python-version: [3.6, 3.7, 3.8, 3.9, '3.10']
3031
steps:
3132
- uses: actions/checkout@v1
3233
name: "Checkout branch"

src/ikpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '3.3'
1+
__version__ = '3.3.1'

src/ikpy/inverse_kinematics.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
ORIENTATION_COEFF = 1.
88

99

10-
def inverse_kinematic_optimization(chain, target_frame, starting_nodes_angles, regularization_parameter=None, max_iter=None, orientation_mode=None, no_position=False, optimization_method='L-BFGS-B'):
10+
def inverse_kinematic_optimization(chain, target_frame, starting_nodes_angles, regularization_parameter=None, max_iter=None, orientation_mode=None, no_position=False):
1111
"""
12-
Computes the inverse kinematic on the specified target with an optimization method
12+
Computes the inverse kinematic on the specified target
1313
1414
Parameters
1515
----------
@@ -32,8 +32,6 @@ def inverse_kinematic_optimization(chain, target_frame, starting_nodes_angles, r
3232
* "all": Target the three axes
3333
no_position: bool
3434
Do not optimize against position
35-
optimization_method: str
36-
Optimization method to use. Defaults to 'L-BFGS-B'
3735
"""
3836
# Begin with the position
3937
target = target_frame[:3, -1]

0 commit comments

Comments
 (0)