-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
1,001 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env python3 | ||
|
||
"""GUI application for numerical optimization visualization.""" | ||
|
||
import sys | ||
from PyQt6.QtWidgets import QApplication | ||
from ui.main_window import MainWindow | ||
|
||
|
||
def main(): | ||
"""Run the GUI application.""" | ||
app = QApplication(sys.argv) | ||
window = MainWindow() | ||
window.show() | ||
sys.exit(app.exec()) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ui/__init__.py | ||
|
||
# TODO: Add UI for numerical methods visualization | ||
# input: function, initial point, method, max iterations, tolerance | ||
# output: plot of the function, the optimization path, and the convergence | ||
from .main_window import MainWindow | ||
|
||
__all__ = ["MainWindow"] |
Oops, something went wrong.