Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented Khan boundaries option #5

Merged
merged 10 commits into from
Jan 31, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Optgra
This repository provides *pyoptgra*, a python package wrapping (and including) OPTGRA.
OPTGRA is an optimization algorithm developed and implemented by Johannes Schoenmaekers, it is specifically designed for near-linear constrained problems, which commonly occur in trajectory optimization.

The full documentation can be found here_.
The full documentation can be found here_ or on the `ESA-internal page <https://midas.io.esa.int/optgra-wrapper>`_.

.. _here: https://esa.github.io/pyoptgra/

Expand Down
2 changes: 1 addition & 1 deletion pyoptgra/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# file, you can obtain them at https://www.gnu.org/licenses/gpl-3.0.txt
# and https://essr.esa.int/license/european-space-agency-community-license-v2-4-weak-copyleft

from .optgra import optgra # noqa
from .optgra import khan_function, optgra # noqa

try:
from ._version import version as __version__ # noqa
Expand Down
2 changes: 1 addition & 1 deletion pyoptgra/_about.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Copyright (C) 2021 ESA, Flight Dynamics OPS-GF
"""Version number of pyoptgra package"""
__version__ = "0.1.9"
__version__ = "1.0.0"
Loading