pick different random seed to avoid edge case
This commit is contained in:
		
							parent
							
								
									32a9d42412
								
							
						
					
					
						commit
						fed700440d
					
				@ -26,7 +26,7 @@ typedef StaticRTree<TestData,
 | 
				
			|||||||
                    TEST_LEAF_NODE_SIZE> TestStaticRTree;
 | 
					                    TEST_LEAF_NODE_SIZE> TestStaticRTree;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Choosen by a fair W20 dice roll (this value is completely arbitrary)
 | 
					// Choosen by a fair W20 dice roll (this value is completely arbitrary)
 | 
				
			||||||
constexpr unsigned RANDOM_SEED = 15;
 | 
					constexpr unsigned RANDOM_SEED = 42;
 | 
				
			||||||
static const int32_t WORLD_MIN_LAT = -90 * COORDINATE_PRECISION;
 | 
					static const int32_t WORLD_MIN_LAT = -90 * COORDINATE_PRECISION;
 | 
				
			||||||
static const int32_t WORLD_MAX_LAT = 90 * COORDINATE_PRECISION;
 | 
					static const int32_t WORLD_MAX_LAT = 90 * COORDINATE_PRECISION;
 | 
				
			||||||
static const int32_t WORLD_MIN_LON = -180 * COORDINATE_PRECISION;
 | 
					static const int32_t WORLD_MIN_LON = -180 * COORDINATE_PRECISION;
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user