git: Rename some directory.

mesh
Pierre-Antoine Rouby 2023-03-30 09:29:33 +02:00
parent b8dd88f4fd
commit d418b57fa0
138 changed files with 40 additions and 41 deletions

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from model.network.Node import Node from Model.Network.Node import Node
class Edge(object): class Edge(object):
def __init__(self, id:str, name:str, def __init__(self, id:str, name:str,

View File

@ -2,8 +2,8 @@
from functools import reduce from functools import reduce
from model.network.Node import Node from Model.Network.Node import Node
from model.network.Edge import Edge from Model.Network.Edge import Edge
class Graph(object): class Graph(object):
def __init__(self): def __init__(self):

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from model.network.Point import Point from Model.Network.Point import Point
class Node(object): class Node(object):
def __init__(self, id:str, name:str, def __init__(self, id:str, name:str,

View File

@ -2,7 +2,7 @@
import os import os
from datetime import datetime from datetime import datetime
from model.Serializable import Serializable from Model.Serializable import Serializable
class Study(Serializable): class Study(Serializable):
def __init__(self): def __init__(self):

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from solver.ASolver import ( from Solver.ASolver import (
AbstractSolver, STATUS AbstractSolver, STATUS
) )

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from view.ASubWindow import ASubWindow from View.ASubWindow import ASubWindow
class AboutWindow(ASubWindow): class AboutWindow(ASubWindow):
def __init__(self, title="About", parent=None): def __init__(self, title="About", parent=None):

View File

@ -1,9 +1,8 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from solver.Solvers import solver_type_list from View.ASubWindow import ASubWindow
from Solver.Solvers import solver_type_list
from view.ASubWindow import ASubWindow from Solver.GenericSolver import GenericSolver
from solver.GenericSolver import GenericSolver
from PyQt5.QtWidgets import ( from PyQt5.QtWidgets import (
QPushButton, QPushButton,

View File

@ -1,9 +1,9 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from config import Config from config import Config
from view.ASubWindow import ASubWindow from View.ASubWindow import ASubWindow
from view.ListedSubWindow import ListedSubWindow from View.ListedSubWindow import ListedSubWindow
from view.ConfigureAddSolverWindow import ConfigureAddSolverWindow from View.ConfigureAddSolverWindow import ConfigureAddSolverWindow
from PyQt5.QtCore import ( from PyQt5.QtCore import (
Qt, QVariant, QAbstractTableModel, Qt, QVariant, QAbstractTableModel,

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from view.ASubWindow import ASubWindow from View.ASubWindow import ASubWindow
class DummyWindow(ASubWindow): class DummyWindow(ASubWindow):
def __init__(self, title="Dummy", parent=None): def __init__(self, title="Dummy", parent=None):

View File

@ -13,14 +13,14 @@ from PyQt5.QtWidgets import (
) )
from PyQt5.uic import loadUi from PyQt5.uic import loadUi
from view.ListedSubWindow import ListedSubWindow from View.ListedSubWindow import ListedSubWindow
from view.DummyWindow import DummyWindow from View.DummyWindow import DummyWindow
from view.ConfigureWindow import ConfigureWindow from View.ConfigureWindow import ConfigureWindow
from view.NewStudyWindow import NewStudyWindow from View.NewStudyWindow import NewStudyWindow
from view.NetworkWindow import NetworkWindow from View.NetworkWindow import NetworkWindow
from view.AboutWindow import AboutWindow from View.AboutWindow import AboutWindow
from model.Study import Study from Model.Study import Study
no_model_action = [ no_model_action = [
"action_menu_new", "action_menu_open", "action_menu_import_mage", "action_menu_new", "action_menu_open", "action_menu_import_mage",

View File

@ -15,9 +15,9 @@ from PyQt5.QtWidgets import (
QGraphicsItem, QGraphicsTextItem, QGraphicsItem, QGraphicsTextItem,
) )
from model.network.Node import Node from Model.Network.Node import Node
from model.network.Edge import Edge from Model.Network.Edge import Edge
from model.network.Graph import Graph from Model.Network.Graph import Graph
class NodeItem(QGraphicsItem): class NodeItem(QGraphicsItem):
Type = QGraphicsItem.UserType + 1 Type = QGraphicsItem.UserType + 1

View File

@ -1,10 +1,10 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from model.network.Node import Node from Model.Network.Node import Node
from model.network.Edge import Edge from Model.Network.Edge import Edge
from model.network.Graph import Graph from Model.Network.Graph import Graph
from view.ASubWindow import ASubWindow from View.ASubWindow import ASubWindow
from view.network.GraphWidget import GraphWidget from View.Network.GraphWidget import GraphWidget
from PyQt5.QtCore import ( from PyQt5.QtCore import (
Qt, QRect, QVariant, QAbstractTableModel, pyqtSlot, pyqtSignal, Qt, QRect, QVariant, QAbstractTableModel, pyqtSlot, pyqtSignal,

View File

@ -1,11 +1,11 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from model.network.Node import Node from Model.Network.Node import Node
from model.network.Edge import Edge from Model.Network.Edge import Edge
from model.network.Graph import Graph from Model.Network.Graph import Graph
from view.ASubWindow import ASubWindow from View.ASubWindow import ASubWindow
from view.network.GraphWidget import GraphWidget from View.Network.GraphWidget import GraphWidget
from view.network.TableModel import ( from View.Network.TableModel import (
GraphTableModel, ComboBoxDelegate, TrueFalseComboBoxDelegate, GraphTableModel, ComboBoxDelegate, TrueFalseComboBoxDelegate,
) )
@ -26,7 +26,7 @@ class NetworkWindow(ASubWindow):
self.ui.setWindowTitle(title) self.ui.setWindowTitle(title)
self.model = model self.model = model
if not self.model.data["graph"]: if "graph" not in self.model.data:
self.graph = Graph() self.graph = Graph()
self.model.data["graph"] = self.graph self.model.data["graph"] = self.graph
else: else:

View File

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from model.Study import Study from Model.Study import Study
from view.ASubWindow import ASubWindow from View.ASubWindow import ASubWindow
class NewStudyWindow(ASubWindow): class NewStudyWindow(ASubWindow):
def __init__(self, study=None, title="New Study", parent=None): def __init__(self, study=None, title="New Study", parent=None):

View File

Before

Width:  |  Height:  |  Size: 286 B

After

Width:  |  Height:  |  Size: 286 B

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 6.6 KiB

After

Width:  |  Height:  |  Size: 6.6 KiB

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

Before

Width:  |  Height:  |  Size: 531 B

After

Width:  |  Height:  |  Size: 531 B

View File

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 5.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 605 B

After

Width:  |  Height:  |  Size: 605 B

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 312 B

After

Width:  |  Height:  |  Size: 312 B

View File

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View File

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

View File

Before

Width:  |  Height:  |  Size: 964 B

After

Width:  |  Height:  |  Size: 964 B

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

Before

Width:  |  Height:  |  Size: 904 B

After

Width:  |  Height:  |  Size: 904 B

View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View File

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View File

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

Before

Width:  |  Height:  |  Size: 672 B

After

Width:  |  Height:  |  Size: 672 B

View File

Before

Width:  |  Height:  |  Size: 460 B

After

Width:  |  Height:  |  Size: 460 B

View File

Before

Width:  |  Height:  |  Size: 651 B

After

Width:  |  Height:  |  Size: 651 B

View File

Before

Width:  |  Height:  |  Size: 266 B

After

Width:  |  Height:  |  Size: 266 B

View File

Before

Width:  |  Height:  |  Size: 376 B

After

Width:  |  Height:  |  Size: 376 B

View File

Before

Width:  |  Height:  |  Size: 529 B

After

Width:  |  Height:  |  Size: 529 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.7 KiB

After

Width:  |  Height:  |  Size: 2.7 KiB

View File

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

Before

Width:  |  Height:  |  Size: 661 B

After

Width:  |  Height:  |  Size: 661 B

View File

Before

Width:  |  Height:  |  Size: 434 B

After

Width:  |  Height:  |  Size: 434 B

View File

Before

Width:  |  Height:  |  Size: 507 B

After

Width:  |  Height:  |  Size: 507 B

View File

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 672 B

After

Width:  |  Height:  |  Size: 672 B

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 784 B

After

Width:  |  Height:  |  Size: 784 B

View File

Before

Width:  |  Height:  |  Size: 779 B

After

Width:  |  Height:  |  Size: 779 B

View File

Before

Width:  |  Height:  |  Size: 243 B

After

Width:  |  Height:  |  Size: 243 B

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 3.3 KiB

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

Before

Width:  |  Height:  |  Size: 3.6 KiB

After

Width:  |  Height:  |  Size: 3.6 KiB

View File

Before

Width:  |  Height:  |  Size: 596 B

After

Width:  |  Height:  |  Size: 596 B

View File

Before

Width:  |  Height:  |  Size: 546 B

After

Width:  |  Height:  |  Size: 546 B

View File

Before

Width:  |  Height:  |  Size: 828 B

After

Width:  |  Height:  |  Size: 828 B

View File

Before

Width:  |  Height:  |  Size: 696 B

After

Width:  |  Height:  |  Size: 696 B

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

Before

Width:  |  Height:  |  Size: 460 B

After

Width:  |  Height:  |  Size: 460 B

View File

Before

Width:  |  Height:  |  Size: 927 B

After

Width:  |  Height:  |  Size: 927 B

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 991 B

After

Width:  |  Height:  |  Size: 991 B

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

Before

Width:  |  Height:  |  Size: 345 B

After

Width:  |  Height:  |  Size: 345 B

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 2.2 KiB

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

Before

Width:  |  Height:  |  Size: 669 B

After

Width:  |  Height:  |  Size: 669 B

View File

Before

Width:  |  Height:  |  Size: 197 B

After

Width:  |  Height:  |  Size: 197 B

Some files were not shown because too many files have changed in this diff Show More