coriolis/Seabreeze
Jean-Paul Chaput 30b92ff33a Add a flag througout all the build system to manage manylinux (PyPI).
* New: In boostrap/FindBootstrap.cmake, add a macro setup_qt() to
    share Python detection across the various tools.
      This macro takes into account the USE_MANYLINUX variable to
    slightly change the Python detection. On a "normal" system we
    look for "Development" (search for dynamic libraries) while under
    manylinux we look for "Development.Module"(static linking).
* Change: In bootstrap/ccb.py, add a new option --manylinux.
* Change: Cleanup in the various CMakeLists.txt to use setup_qt().
2023-07-03 19:54:01 +02:00
..
cmake_modules Seabreeze, first commit 2022-06-03 16:48:17 +02:00
doc Seabreeze, first commit 2022-06-03 16:48:17 +02: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
}