Skip to content

Commit

Permalink
Fix docs paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Myoldmopar committed Nov 22, 2022
1 parent da55af9 commit a99ced3
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import sys

project_root_path = Path(__file__).resolve().parent.parent
sys.path.insert(0, str(project_root_path / 'mypyopt'))
sys.path.insert(0, str(project_root_path))

project = 'MyPyOpt'
copyright = '2022, Edwin Lee'
Expand Down
2 changes: 1 addition & 1 deletion docs/decision_variable.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Decision Variable Class Documentation
=====================================

.. automodule:: decision_variable
.. automodule:: mypyopt.decision_variable
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/exceptions.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Exceptions Class Documentation
==============================

.. automodule:: exceptions
.. automodule:: mypyopt.exceptions
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/input_output.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
IO Class Documentation
======================

.. automodule:: input_output
.. automodule:: mypyopt.input_output
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/objective_evaluation.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Objective Evaluation Result Class Documentation
===============================================

.. automodule:: objective_evaluation
.. automodule:: mypyopt.objective_evaluation
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/optimization_structure.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Optimization Project Structure Class Documentation
==================================================

.. automodule:: project_structure
.. automodule:: mypyopt.project_structure
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/optimizer.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Optimizer Base Class Documentation
==================================

.. automodule:: optimizer
.. automodule:: mypyopt.optimizer
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/optimizer_heuristic_search.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Optimizer (Heuristic Search) Class Documentation
================================================

.. automodule:: optimizer_heuristic_search
.. automodule:: mypyopt.optimizer_heuristic_search
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/return_state_enum.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Return State Enumeration Class Documentation
============================================

.. automodule:: return_state_enum
.. automodule:: mypyopt.return_state_enum
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion docs/search_return_type.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Search Return Type Class Documentation
======================================

.. automodule:: search_return_type
.. automodule:: mypyopt.search_return_type
:members:
:undoc-members:
:show-inheritance:
Expand Down

0 comments on commit a99ced3

Please sign in to comment.