Home
last modified time | relevance | path

Searched refs:forests (Results 1 – 25 of 1516) sorted by relevance

12345678910>>...61

/dports/databases/postgis32/postgis-3.2.0/extras/ogc_test_suite/
H A D2_queries.sql939 SELECT ST_Overlaps(forests.boundary, named_places.boundary)
940 FROM forests, named_places
941 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1049 SELECT ST_Contains(forests.boundary, named_places.boundary)
1050 FROM forests, named_places
1051 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1085 SELECT ST_Relate(forests.boundary, named_places.boundary, 'TTTTTTTTT')
1086 FROM forests, named_places
1087 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1184 FROM named_places, forests
[all …]
H A D1_schema.sql284 CREATE TABLE forests ( table
592 INSERT INTO forests VALUES(109, 'Green Forest',
/dports/databases/postgis31/postgis-3.1.4/extras/ogc_test_suite/
H A D2_queries.sql939 SELECT ST_Overlaps(forests.boundary, named_places.boundary)
940 FROM forests, named_places
941 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1049 SELECT ST_Contains(forests.boundary, named_places.boundary)
1050 FROM forests, named_places
1051 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1085 SELECT ST_Relate(forests.boundary, named_places.boundary, 'TTTTTTTTT')
1086 FROM forests, named_places
1087 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1184 FROM named_places, forests
[all …]
H A D1_schema.sql284 CREATE TABLE forests ( table
592 INSERT INTO forests VALUES(109, 'Green Forest',
/dports/databases/postgis25/postgis-2.5.5/extras/ogc_test_suite/
H A D2_queries.sql939 SELECT ST_Overlaps(forests.boundary, named_places.boundary)
940 FROM forests, named_places
941 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1049 SELECT ST_Contains(forests.boundary, named_places.boundary)
1050 FROM forests, named_places
1051 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1085 SELECT ST_Relate(forests.boundary, named_places.boundary, 'TTTTTTTTT')
1086 FROM forests, named_places
1087 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1184 FROM named_places, forests
[all …]
H A D1_schema.sql284 CREATE TABLE forests ( table
592 INSERT INTO forests VALUES(109, 'Green Forest',
/dports/databases/postgis30/postgis-3.0.4/extras/ogc_test_suite/
H A D2_queries.sql939 SELECT ST_Overlaps(forests.boundary, named_places.boundary)
940 FROM forests, named_places
941 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1049 SELECT ST_Contains(forests.boundary, named_places.boundary)
1050 FROM forests, named_places
1051 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1085 SELECT ST_Relate(forests.boundary, named_places.boundary, 'TTTTTTTTT')
1086 FROM forests, named_places
1087 WHERE forests.name = 'Green Forest' AND named_places.name = 'Ashton';
1184 FROM named_places, forests
[all …]
/dports/databases/grass7/grass-7.8.6/raster/r.li/
H A DTODO9 r.mapcalc "forests = if(landcover.30m >= 41 && landcover.30m <= 43,1,null())"
11 d.rast forests
19 r.li.patchdensity forests conf=movwindow7 output=forests_p_dens7
22 r.to.vect forests out=forests type=area
23 d.vect forests type=boundary
29 r.li.patchdensity forests conf=movwindow7 output=forests_p_dens7mask --o
35 r.mapcalc "forests = 0"
36 r.li.patchdensity forests conf=movwindow7 output=forests_p_dens7 --o
H A Dr.li.testing_sp_mov.sh23 r.li.${mymeasure} forests conf=movwindow7 output=forests_${mymeasure}_mov7
30 r.li.renyi forests conf=movwindow7 output=forests_renyi_mov7_a06 alpha=0.6
/dports/graphics/digikam/digikam-7.4.0/core/libs/facesengine/preprocessing/shape-predictor/
H A Dshapepredictor.cpp349 for (unsigned long iter = 0 ; iter < forests.size() ; ++iter) in num_features()
353 num += forests[iter][i].num_leaves(); in num_features()
365 for (unsigned long iter = 0 ; iter < forests.size() ; ++iter) in operator ()()
403 dataStream<<(unsigned int)shape.forests.size(); in operator <<()
404 dataStream<<(unsigned int)shape.forests[0].size(); in operator <<()
406 for (unsigned int i = 0 ; i < shape.forests.size() ; ++i) in operator <<()
410 dataStream << shape.forests[i][j]; in operator <<()
453 shape.forests.resize(size); in operator >>()
456 for (unsigned int i = 0 ; i < shape.forests.size() ; ++i) in operator >>()
458 shape.forests[i].resize(size); in operator >>()
[all …]
/dports/x11/xlockmore/xlockmore-5.67/modes/
H A Dforest.c90 static foreststruct *forests = (foreststruct *) NULL; variable
149 MI_INIT(mi, forests); in init_forest()
150 fp = &forests[MI_SCREEN(mi)]; in init_forest()
174 if (forests == NULL) in draw_forest()
176 fp = &forests[MI_SCREEN(mi)]; in draw_forest()
210 if (forests != NULL) { in release_forest()
211 free(forests); in release_forest()
212 forests = (foreststruct *) NULL; in release_forest()
/dports/science/py-dlib/dlib-19.22/dlib/image_processing/
H A Dshape_predictor.h300 ) : initial_shape(initial_shape_), forests(forests_) in shape_predictor()
332 for (unsigned long iter = 0; iter < forests.size(); ++iter) in num_features()
333 for (unsigned long i = 0; i < forests[iter].size(); ++i) in num_features()
334 num += forests[iter][i].num_leaves(); in num_features()
347 for (unsigned long iter = 0; iter < forests.size(); ++iter) in operator()
353 for (unsigned long i = 0; i < forests[iter].size(); ++i) in operator()
377 for (unsigned long iter = 0; iter < forests.size(); ++iter) in operator()
388 feat_offset += forests[iter][i].num_leaves(); in operator()
406 std::vector<std::vector<impl::regression_tree> > forests; variable
416 dlib::serialize(item.forests, out); in serialize()
[all …]
/dports/science/dlib-cpp/dlib-19.22/dlib/image_processing/
H A Dshape_predictor.h300 ) : initial_shape(initial_shape_), forests(forests_) in shape_predictor()
332 for (unsigned long iter = 0; iter < forests.size(); ++iter) in num_features()
333 for (unsigned long i = 0; i < forests[iter].size(); ++i) in num_features()
334 num += forests[iter][i].num_leaves(); in num_features()
347 for (unsigned long iter = 0; iter < forests.size(); ++iter) in operator()
353 for (unsigned long i = 0; i < forests[iter].size(); ++i) in operator()
377 for (unsigned long iter = 0; iter < forests.size(); ++iter) in operator()
388 feat_offset += forests[iter][i].num_leaves(); in operator()
406 std::vector<std::vector<impl::regression_tree> > forests; variable
416 dlib::serialize(item.forests, out); in serialize()
[all …]
/dports/math/py-graphillion/Graphillion-1.3/graphillion/test/
H A Dtutorial.py74 forests = GraphSet.forests(roots=generators, is_spanning=True)
75 self.assertEqual(len(forests), 54060425088)
80 safe_forests = forests.excluding(too_large_trees)
83 closed_switches = (forests - safe_forests).choice()
/dports/biology/seqan-apps/seqan-seqan-v2.4.0/util/bin/
H A Dprofile2pdf.py249 def breakDownTimes(jobTypes, forests): argument
250 for threadId in sorted(forests.keys()):
253 for section in forests[threadId]:
258 def createDiagram(meta, jobTypes, forests, path): argument
269 for threadId, forest in forests.iteritems():
272 drawKey(cr, jobTypes, len(forests))
273 drawScale(cr, totalBegin, totalEnd, len(forests))
294 forests = {}
299 forests[threadId], sections[threadId] = f, s
307 createDiagram(meta, jobTypes, forests, args[2])
[all …]
/dports/devel/spark/spark-2.1.1/docs/
H A Dmllib-classification-regression.md20 …ication</td><td>linear SVMs, logistic regression, decision trees, random forests, gradient-boosted…
23 …<td>Multiclass Classification</td><td>logistic regression, decision trees, random forests, naive B…
26 …td>linear least squares, Lasso, ridge regression, decision trees, random forests, gradient-boosted…
38 * [random forests](mllib-ensembles.html#random-forests)
/dports/games/freeciv/freeciv-2.6.6/data/sandbox/
H A Dscript.lua68 local forests = 0
115 forests = forests + 1
157 if random(1, 100) <= forests then
158 selected_forest = random(1, forests)
/dports/games/freeciv-nox11/freeciv-2.6.6/data/civ2civ3/
H A Dscript.lua68 local forests = 0
115 forests = forests + 1
157 if random(1, 100) <= forests then
158 selected_forest = random(1, forests)
/dports/games/freeciv/freeciv-2.6.6/data/civ2civ3/
H A Dscript.lua68 local forests = 0
115 forests = forests + 1
157 if random(1, 100) <= forests then
158 selected_forest = random(1, forests)
/dports/games/freeciv-nox11/freeciv-2.6.6/data/sandbox/
H A Dscript.lua68 local forests = 0
115 forests = forests + 1
157 if random(1, 100) <= forests then
158 selected_forest = random(1, forests)
/dports/games/widelands/widelands-build21/data/campaigns/emp02.wmf/scripting/
H A Dmission_thread.lua11 local forests = map:get_field(17,10)
12 p1:reveal_fields(forests:region(6))
14 run(function() sleep(5000) p1:hide_fields(forests:region(6)) end)
17 wait_for_roadbuilding_and_scroll(forests)
/dports/devel/sgb/sgb-20090810_1/PROTOTYPES/
H A Dmiles_span.ch119 register long m,mm; /* number of nodes in the forests */
120 register Arc *q,*qq; /* binomial trees in the forests, linked by |qsib| */
124 register long m, /* number of nodes in the forests */
125 register Arc *q, /* binomial trees in the forests, linked by |qsib| */
126 register long mm, /* number of nodes in the forests */
127 register Arc *qq, /* binomial trees in the forests, linked by |qsib| */
/dports/devel/sgb/sgb-20090810_1/
H A Dmiles_span.ch119 register long m,mm; /* number of nodes in the forests */
120 register Arc *q,*qq; /* binomial trees in the forests, linked by |qsib| */
124 register long m, /* number of nodes in the forests */
125 register Arc *q, /* binomial trees in the forests, linked by |qsib| */
126 register long mm, /* number of nodes in the forests */
127 register Arc *qq, /* binomial trees in the forests, linked by |qsib| */
/dports/games/freeciv/freeciv-2.6.6/data/hexemplio/
H A DMakefile.am15 forests.png \
16 forests.spec \
/dports/games/freeciv-nox11/freeciv-2.6.6/data/hexemplio/
H A DMakefile.am15 forests.png \
16 forests.spec \

12345678910>>...61