Skip to content

Commit

Permalink
KCore: supp. include numpy in connect.h
Browse files Browse the repository at this point in the history
  • Loading branch information
benoit128 committed Jul 22, 2024
1 parent 0fa7bd2 commit 65034ae
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions Cassiopee/KCore/KCore/Connect/connect.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
#ifndef _KCORE_CONNECT_H
#define _KCORE_CONNECT_H
# include <utility>
# include <kPython.h>
# include "kPython.h"

# include "Def/DefTypes.h"
# include "Fld/FldArray.h"
# include "Def/DefFunction.h"
#include "Numpy/importNumpy.h"
#include <numpy/arrayobject.h>

# include "topologyMapping.h"
# include "hashFunctions.h"

Expand All @@ -44,16 +44,16 @@ namespace K_CONNECT
void cleanConnectivity(E_Int posx, E_Int posy, E_Int posz,
E_Float eps, const char* eltType,
K_FLD::FldArrayF& f, K_FLD::FldArrayI& cEV,
bool remove_degen = false,
bool ordered_merge = true);
bool remove_degen=false,
bool ordered_merge=true);

/* Nettoyage de la connectivite de maillage non-structures
(openmp coarse grain) */
void cleanConnectivity_opt(E_Int posx, E_Int posy, E_Int posz,
E_Float eps, const char* eltType,
K_FLD::FldArrayF& f, K_FLD::FldArrayI& cEV,
bool remove_degen = false,
bool ordered_merge = true);
bool remove_degen=false,
bool ordered_merge=true);

/*-------------*/
/*- Structure -*/
Expand Down
2 changes: 1 addition & 1 deletion docs/developers/Install/msys2.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Installation on msys2 (windows)
# Installation on windows (using msys2)

## Install msys2
Download msys2 (https://www.msys2.org)
Expand Down
2 changes: 1 addition & 1 deletion docs/developers/Install/ubuntu.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Installation on ubuntu (linux)
# Installation on linux (ubuntu)

Tested on ubuntu 24.04.

Expand Down

0 comments on commit 65034ae

Please sign in to comment.