This Flask web application is designed for basic linear optimization tasks. It provides users with an interface to input optimization problems and receive solutions using linear programming techniques.
The purpose of this project is to offer a user-friendly platform for users to solve linear programming problems without needing in-depth knowledge of optimization algorithms. By utilizing Flask, this application aims to simplify the optimization process, making it accessible to a broader audience.
- Clone the repository:
git clone https://github.com/MafuMQ/ex2-LO.git cd ex2-LO - Create a virtual environment:
python3 -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
- Install dependencies:
pip install -r requirements.txt
- Run the application:
Open your browser and visit
flask run
http://127.0.0.1:5000to access the app.
- Navigate to the home page of the web app.
- Input your linear optimization problem in the provided form.
- Submit the form to view the optimal solution and other relevant output.
Customers and stakeholders can effectively leverage this tool for various linear optimization needs, from academic purposes to practical business applications.