coriolis/Seabreeze
Serge Rabyking 1ea1a402e6 Merge branch 'devel' into 'serge/changes'
# Conflicts:
#   Seabreeze/CMakeLists.txt
#   anabatic/CMakeLists.txt
#   anabatic/src/CMakeLists.txt
#   bootstrap/CMakeLists.txt
#   bora/CMakeLists.txt
#   crlcore/CMakeLists.txt
#   crlcore/src/cyclop/CMakeLists.txt
#   crlcore/src/pyCRL/CMakeLists.txt
#   crlcore/src/x2y/CMakeLists.txt
#   etesian/CMakeLists.txt
#   etesian/src/CMakeLists.txt
#   flute/CMakeLists.txt
#   flute/src/3.1/CMakeLists.txt
#   foehn/CMakeLists.txt
#   hurricane/CMakeLists.txt
#   hurricane/src/isobar/CMakeLists.txt
#   ispd/CMakeLists.txt
#   karakaze/CMakeLists.txt
#   katana/CMakeLists.txt
#   katana/src/CMakeLists.txt
#   oroshi/CMakeLists.txt
#   stratus1/CMakeLists.txt
#   tutorial/CMakeLists.txt
#   unicorn/CMakeLists.txt
#   unittests/CMakeLists.txt
2023-07-03 18:44:34 +00:00
..
cmake_modules Seabreeze, first commit 2022-06-03 16:48:17 +02:00
doc Implemented python wheel build using scikit-build-core backend 2023-05-29 03:59:41 +01:00
src Don't link libpython, it isn't there in manylinux 2023-02-21 16:10:55 +01:00
test Seabreeze, first commit 2022-06-03 16:48:17 +02:00
CMakeLists.txt Add a flag througout all the build system to manage manylinux (PyPI). 2023-07-03 19:54:01 +02:00
README.txt Seabreeze : update on calculating RC; adding explication (brief) of fonctions 2022-07-12 12:39:37 +02:00

README.txt

Fonctions dans Seabreeze.cpp :

---------------------------------------------------------------------
contFromNet ( Net* net )
{
  ajouter les contacts dans net au set<Contact*> _conts;
}

buildTree ( RoutingPad* rp )
{
  Construire l'arbre de rp, ça veux dire le contact trouvé dans rp sera la racine de l'arbre
}

build_from_Node ( Node* source, Segment* seg )
{
  Après avoir crée le premier node / la racine dans buildTree, on va l'utiliser pour construire l'arbre.
}

build_branch ( double* R, double* C, Contact* contact )
{
  Parcourir la branche et trouver le Node suivant de l'arbre
}

Set_RC ( double* R, double* C, Contact* ct, Segment* sm )
{
  Calculer le RC de la branche ct-sm et ajouter la valeur dans R et C
}