Re: [deal.II] Re: KDTree implementation error

2020-07-24 Thread heena patel
Dear Luca, I am using 9.2 version and the implementation I try to follow from your presentation at SISSA 2018 but it gives me error. Following are the lines I added to step-1. I want to implement K nearest neighbor. I will work on your suggestion. *#include * *Poi

Re: [deal.II] Re: KDTree implementation error

2020-07-23 Thread Luca Heltai
If you are using version 9.3pre of deal.II, kdtree was removed. Use RTree instead, which is faster and more flexible. Luca > Il giorno 24 lug 2020, alle ore 05:41, heena patel ha > scritto: > >  > Dear Bruno, >I had already added kdree.h header file, check >

Re: [deal.II] Re: KDTree implementation error

2020-07-23 Thread heena patel
Dear Bruno, I had already added kdree.h header file, check the question again. But it seems it does not read KDTree; something is not compatible between class and header file. Regards, Heena On Thu, Jul 23, 2020 at 9:03 PM Bruno Turcksin wrote: > Heena, > > You ar

[deal.II] Re: KDTree implementation error

2020-07-23 Thread Bruno Turcksin
Heena, You are missing an include. Try adding #include https://dealii.org/current/doxygen/deal.II/kdtree_8h_source.html>> Best, Bruno On Thursday, July 23, 2020 at 2:55:53 PM UTC-4, heena patel wrote: > > > Dear all, > I had tried to implement KDTree in step_1 > tutor