Skip to content

Commit a99ced3

Browse files
committed
Fix docs paths
1 parent da55af9 commit a99ced3

10 files changed

+10
-10
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111

1212
project_root_path = Path(__file__).resolve().parent.parent
13-
sys.path.insert(0, str(project_root_path / 'mypyopt'))
13+
sys.path.insert(0, str(project_root_path))
1414

1515
project = 'MyPyOpt'
1616
copyright = '2022, Edwin Lee'

docs/decision_variable.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Decision Variable Class Documentation
22
=====================================
33

4-
.. automodule:: decision_variable
4+
.. automodule:: mypyopt.decision_variable
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/exceptions.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Exceptions Class Documentation
22
==============================
33

4-
.. automodule:: exceptions
4+
.. automodule:: mypyopt.exceptions
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/input_output.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
IO Class Documentation
22
======================
33

4-
.. automodule:: input_output
4+
.. automodule:: mypyopt.input_output
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/objective_evaluation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Objective Evaluation Result Class Documentation
22
===============================================
33

4-
.. automodule:: objective_evaluation
4+
.. automodule:: mypyopt.objective_evaluation
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/optimization_structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Optimization Project Structure Class Documentation
22
==================================================
33

4-
.. automodule:: project_structure
4+
.. automodule:: mypyopt.project_structure
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/optimizer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Optimizer Base Class Documentation
22
==================================
33

4-
.. automodule:: optimizer
4+
.. automodule:: mypyopt.optimizer
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/optimizer_heuristic_search.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Optimizer (Heuristic Search) Class Documentation
22
================================================
33

4-
.. automodule:: optimizer_heuristic_search
4+
.. automodule:: mypyopt.optimizer_heuristic_search
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/return_state_enum.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Return State Enumeration Class Documentation
22
============================================
33

4-
.. automodule:: return_state_enum
4+
.. automodule:: mypyopt.return_state_enum
55
:members:
66
:undoc-members:
77
:show-inheritance:

docs/search_return_type.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Search Return Type Class Documentation
22
======================================
33

4-
.. automodule:: search_return_type
4+
.. automodule:: mypyopt.search_return_type
55
:members:
66
:undoc-members:
77
:show-inheritance:

0 commit comments

Comments
 (0)