History log of /petsc/src/vec/is/utils/kdtree.c (Results 1 – 21 of 21)
Revision Date Author Comments
# 2235c4e2 23-Feb-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'dalcinl/bt-byte' into 'main'

Implement PetscBT with new PetscByte datatype as unsigned char

See merge request petsc/petsc!9046


# 73bc78fd 17-Feb-2026 Lisandro Dalcin <dalcinl@gmail.com>

Implement PetscBT with new PetscByte datatype as unsigned char


# 4e8208cb 31-Jan-2026 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetC

Merge branch 'barry/2026-01-13/ftn-generation-for-context-functions' into 'main'

Fortran generation of interface definitions for functions that take and return context variables (void *ctx and PetCtx ctx)

See merge request petsc/petsc!8956

show more ...


# 2a8381b2 13-Jan-2026 Barry Smith <bsmith@mcs.anl.gov>

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now t

Add automatic generated fortran support for setting and returning contexts

Major cleanup of the code for setting and returning application (previously called user) contexts
- PetscCtx ctx is now the standard for passing in contexts
- PetscCtxRt ctx is the standard for passing out contexts, including context destroy routines based on PetscCtxDestroyFn

Both of these are typedef to void*

Also removed most use of user and userctx for context arguments now consistently named ctx

Improved documentation on PetscCtx and PetscCtxRt and on how to use contexts (including getting them) from Fortran

show more ...


# 45eca2a8 28-Dec-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/kdtree-doc' into 'main'

doc(kdtree): Minor comments added

See merge request petsc/petsc!8922


# c87b6f5f 28-Dec-2025 James Wright <james@jameswright.xyz>

doc(kdtree): Minor comments added


# 595506c3 09-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 9962b8f6 09-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-whigher-precision' into 'release'

Fix -Whigher-precision-for-complex-division with Intel oneAPI 2025.1.0

See merge request petsc/petsc!8282


# 6c6e6638 06-Apr-2025 Pierre Jolivet <pierre@joliv.et>

PetscKDTree: do not include all headers


# 09b68a49 04-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 71ecafc3 03-Apr-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jose/fix-linter' into 'release'

Fix docstring issues reported by linter

See merge request petsc/petsc!8258


# d31fe398 31-Mar-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-typos' into 'release'

Fix typos

See merge request petsc/petsc!8259


# bfe80ac4 29-Mar-2025 Pierre Jolivet <pierre@joliv.et>

Fix typos


# d6ae5217 29-Mar-2025 Jose E. Roman <jroman@dsic.upv.es>

Fix docstring issues reported by linter


# 9ec6f1ff 28-Jan-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/kdtree-fallthrough' into 'main'

sf: Add fallthrough comment to KDTreeCreate

See merge request petsc/petsc!8105


# 565897f2 28-Jan-2025 James Wright <james@jameswright.xyz>

sf: Add fallthrough comment to KDTreeCreate

This line should fallthrough correctly, but requires a comment at the
end of the line to signal that the fallthrough is intended.


# 18724ea5 27-Jan-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-strict-prototypes' into 'main'

Fix -Wstrict-prototypes

See merge request petsc/petsc!8097


# eba205da 25-Jan-2025 Pierre Jolivet <pierre@joliv.et>

Fix -Wstrict-prototypes

petsc/src/vec/is/utils/kdtree.c:60:51: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
60 | static PetscErrorC

Fix -Wstrict-prototypes

petsc/src/vec/is/utils/kdtree.c:60:51: warning: a function declaration without a prototype is deprecated in all versions of C [-Wstrict-prototypes]
60 | static PetscErrorCode PetscKDTreeRegisterLogEvents()
| ^
| void
1 warning generated.

show more ...


# d6682a24 17-Jan-2025 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jrwrigh/kd_tree' into 'main'

Add PetscKDTree

See merge request petsc/petsc!7954


# 8279f6d9 20-Oct-2024 James Wright <james@jameswright.xyz>

KDStem: Use uint8_t for axis and char for boolean


# 98480730 18-Oct-2024 James Wright <james@jameswright.xyz>

IS: Add PetscKDTree

Co-authored-by: Barry Smith <bsmith@mcs.anl.gov>