Skip to content

Commit b942a20

Browse files
folder structure has been corrected
1 parent 12edfc7 commit b942a20

File tree

8 files changed

+7
-6
lines changed

8 files changed

+7
-6
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ tests/__pycache__/
44
build/
55
dist/
66
*.egg-info/
7-
.pypirc
7+
.pypirc
8+
example.py

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ These algorithms are designed to solve both **constrained** and **unconstrained*
1919
You can install this package directly from PyPI:
2020

2121
```bash
22-
pip install optimization_algorithms
22+
pip install rao_algorithms
2323
```
2424

2525
Alternatively, you can clone this repository and install it locally:
2626

2727
```bash
28-
git clone https://github.com/your-username/optimization_algorithms.git
28+
git clone https://github.com/VaidhyaMegha/optimization_algorithms.git
2929
cd optimization_algorithms
3030
pip install .
3131
```
@@ -36,7 +36,7 @@ pip install .
3636

3737
```python
3838
import numpy as np
39-
from optimization_algorithms import BMR_algorithm, objective_function
39+
from rao_algorithms import BMR_algorithm, objective_function
4040

4141
# Define the bounds for a 2D problem
4242
bounds = np.array([[-100, 100]] * 2)
@@ -55,7 +55,7 @@ print(f"Best fitness found: {best_fitness}")
5555

5656
```python
5757
import numpy as np
58-
from optimization_algorithms import BWR_algorithm, objective_function, constraint_1, constraint_2
58+
from rao_algorithms import BWR_algorithm, objective_function, constraint_1, constraint_2
5959

6060
# Define the bounds for a 2D problem
6161
bounds = np.array([[-100, 100]] * 2)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def read_file(filename):
88

99
setup(
1010
name='rao_algorithms',
11-
version='0.1.3',
11+
version='0.1.4',
1212
author='Samdeep Kunkunuru',
1313
author_email='[email protected]',
1414
description='BMR and BWR optimization algorithms with constraint handling',
-3.19 KB
Binary file not shown.

0 commit comments

Comments
 (0)