File size: 625 Bytes
4a7e29d
79bc79a
 
 
4a7e29d
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import gradio as gr
from maths.operations_research.BranchAndBoundSolver import branch_and_bound_interface
from maths.operations_research.DualSimplexSolver import dual_simplex_interface
from maths.operations_research.simplex_solver_with_steps import simplex_solver_interface

operations_research_interfaces_list = [
    branch_and_bound_interface, dual_simplex_interface, simplex_solver_interface
]
operations_research_tab_names = ["Branch & Bound", "Dual Simplex", "Simplex Steps"]

operations_research_tab = gr.TabbedInterface(operations_research_interfaces_list, operations_research_tab_names, title="Operations Research")