Skip to content

Commit

Permalink
🧐 Code review (#2)
Browse files Browse the repository at this point in the history
Co-authored-by: sergejkoll <kolesnikov.school4@gmail.com>
  • Loading branch information
ispaneli and sergejkoll committed Mar 22, 2023
1 parent a349ca2 commit d654010
Show file tree
Hide file tree
Showing 21 changed files with 1,057 additions and 846 deletions.
28 changes: 0 additions & 28 deletions lippy/__init__.py

This file was deleted.

3 changes: 0 additions & 3 deletions lippy/_log_modes.py

This file was deleted.

22 changes: 0 additions & 22 deletions lippy/dual_lp.py

This file was deleted.

65 changes: 0 additions & 65 deletions lippy/zero_sum_game.py

This file was deleted.

38 changes: 38 additions & 0 deletions src/lippy/__init__.py
@@ -0,0 +1,38 @@
from .bnb import BranchAndBound
from .brute_force import BruteForce
from .dual import primal_to_dual_lp
from .game import ZeroSumGame
from .gomory import CuttingPlaneMethod
from .simplex import SimplexMethod

from .enums import LogMode


__author__ = 'ispaneli'
__email__ = 'ispanelki@gmail.com'

__version__ = '0.0.5'

__doc__ = """
Lippy
=====
Provides:
1. Simplex method in primal linear programming
2. Simplex method in dual linear programming
3. Branch and bound in integer linear programming
4. Brute force method in integer linear programming
5. Cutting-plane method in integer linear programming
6. Zero-sum game in game theory (using Simplex method)
----------------------------
Author: @ispaneli
E-mail: ispanelki@gmail.com
GitHub repository: <https://github.com/ispaneli/lippy>
p.s. During the development, the materials of N.S.Konnova (BMSTU, IU-8) were used.
"""




1 change: 1 addition & 0 deletions src/lippy/bnb/__init__.py
@@ -0,0 +1 @@
from .branch_and_bound import BranchAndBound

0 comments on commit d654010

Please sign in to comment.