Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							1ce573ef35 
							
						 
					 
					
						
						
							
							Fix lua nil for MacOS  
						
						
						
					 
					
						2020-11-24 08:26:24 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							cf13a9714d 
							
						 
					 
					
						
						
							
							clang-format-3.8 changed files  
						
						
						
					 
					
						2020-11-24 08:06:26 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							24d0af6faf 
							
						 
					 
					
						
						
							
							clang-format changed file  
						
						
						
					 
					
						2020-11-23 17:12:13 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							ca68518763 
							
						 
					 
					
						
						
							
							Remove context from get_nodes call  
						
						
						
					 
					
						2020-11-23 13:24:44 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							f6065de494 
							
						 
					 
					
						
						
							
							Added nil check to table conversion  
						
						
						
					 
					
						2020-11-23 13:21:55 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							5b6e82fa9c 
							
						 
					 
					
						
						
							
							Revert "Copy nodes to lua table"  
						
						... 
						
						
						
						This reverts commit a7a088d416 
						
					 
					
						2020-11-19 17:14:38 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							a7a088d416 
							
						 
					 
					
						
						
							
							Copy nodes to lua table  
						
						
						
					 
					
						2020-11-19 15:39:31 -07:00 
						 
				 
			
				
					
						
							
							
								Desone Burns II 
							
						 
					 
					
						
						
						
						
							
						
						
							deacc8fb5c 
							
						 
					 
					
						
						
							
							Update to sol2 v2.20.6  
						
						
						
					 
					
						2020-11-18 17:01:43 -07:00 
						 
				 
			
				
					
						
							
							
								Jay Zhang 
							
						 
					 
					
						
						
						
						
							
						
						
							17eb39d0a9 
							
						 
					 
					
						
						
							
							fix: clangformat  
						
						
						
					 
					
						2020-10-26 01:19:17 +00:00 
						 
				 
			
				
					
						
							
							
								Jay Zhang 
							
						 
					 
					
						
						
						
						
							
						
						
							7d28b7aa3a 
							
						 
					 
					
						
						
							
							feat: unify turn_penalties_index dump same with turn_weight_penalties and turn_duration_penalties  
						
						
						
					 
					
						2020-10-23 09:38:56 +00:00 
						 
				 
			
				
					
						
							
							
								Guannan Du 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							1ba8aba466 
							
						 
					 
					
						
						
							
							Fix Issue#5864 build errors on mac OS ( #5865 )  
						
						... 
						
						
						
						* Fix Issue#5864 build errors on mac OS
Co-authored-by: Guannan Du <guannan.du@Guannans-MacBook-Pro-2.local> 
						
					 
					
						2020-10-21 07:00:55 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Bell 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f87a324633 
							
						 
					 
					
						
						
							
							Fix crash in MLD alternative search if source or target are invalid ( #5851 )  
						
						... 
						
						
						
						In situations where there is not a valid source or target phantom
node (e.g. when snapping to an edge with a zero weight), a
heap assertion will fail in the MLD alternative search code.
We fix this by checking for empty heaps before proceeding with
the search. 
						
					 
					
						2020-10-08 15:27:02 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Bell 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							e033e0b553 
							
						 
					 
					
						
						
							
							Fix table result when source and destination on same one-way segment ( #5828 )  
						
						... 
						
						
						
						Fixes  #5788 
Table queries where source and destination are phantom nodes
on the same one-way segment can fail to find valid routes.
This is due to a bug in the MLD table generation for the
special case where the query can be simplified to a
one-to-many search.
If the destination is before the source on the one-way segment,
it will fail to find a route.
We fix this case by not marking the node as visited at the start,
so that valid paths to this node can be found later in the search.
We also remove redundant initialization for the source
node as the same actions are performed by a search step. 
					
						2020-10-07 14:58:13 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Bell 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4799b46eeb 
							
						 
					 
					
						
						
							
							Incorrect error message when unable to snap all input coordinates ( #5846 )  
						
						... 
						
						
						
						In cases where we are unable to find a phantom node for an input
coordinate, we return an error indicating which coordinate failed.
This would always refer to the coordinate with index equal to the
number of valid phantom nodes found.
We fix this by instead returning the first index for which a
phantom node could not be found. 
						
					 
					
						2020-09-30 18:44:22 -07:00 
						 
				 
			
				
					
						
							
							
								Michael Bell 
							
						 
					 
					
						
						
						
						
							
						
						
							d3ab6f1fca 
							
						 
					 
					
						
						
							
							Remove unused future  
						
						... 
						
						
						
						The serialization of the compressed node based graph was changed in
c410c2 to no longer be asynchronous.
This removes the unused future object. 
						
					 
					
						2020-09-22 23:01:06 +01:00 
						 
				 
			
				
					
						
							
							
								Vyacheslav Napadovsky 
							
						 
					 
					
						
						
						
						
							
						
						
							f545f2293e 
							
						 
					 
					
						
						
							
							Make MMapMemoryAllocator map files in read-only (O_RDONLY) mode. Mapping with O_RDWR will cause copy_up across Docker layers.  
						
						
						
					 
					
						2020-09-09 00:51:42 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							03d9e7a8ce 
							
						 
					 
					
						
						
							
							Deprecated tbb::task_scheduler_init replaced with std::thread and tbb::global_control  
						
						
						
					 
					
						2020-09-04 09:33:43 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chapligin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							4d6272b030 
							
						 
					 
					
						
						
							
							Merge pull request  #5569  from rdvelazquez/master  
						
						... 
						
						
						
						Update kCellsAtMostSameBy comment 
						
					 
					
						2020-08-21 12:07:27 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							2d0b2ca987 
							
						 
					 
					
						
						
							
							Removed STXXL support.  
						
						
						
					 
					
						2020-08-20 11:54:02 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chapligin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							df9fda177d 
							
						 
					 
					
						
						
							
							Merge pull request  #5384  from wangyoucao577/clean-comments  
						
						... 
						
						
						
						correct comments for "compress edge if it crosses a traffic signal" 
						
					 
					
						2020-08-18 17:21:23 +03:00 
						 
				 
			
				
					
						
							
							
								Jay Zhang 
							
						 
					 
					
						
						
						
						
							
						
						
							d2e7e6e9e6 
							
						 
					 
					
						
						
							
							improve comment description  
						
						
						
					 
					
						2020-08-12 15:18:58 +08:00 
						 
				 
			
				
					
						
							
							
								Denis Chapligin 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							b9ebe0c369 
							
						 
					 
					
						
						
							
							Merge pull request  #5628  from wangyoucao577/feature/disable-debug-log-compile-time-control  
						
						... 
						
						
						
						Control release mode debug logging output by ENABLE_DEBUG_LOGGING option 
						
					 
					
						2020-08-11 10:27:27 +03:00 
						 
				 
			
				
					
						
							
							
								Jay Zhang 
							
						 
					 
					
						
						
						
						
							
						
						
							106082f6f8 
							
						 
					 
					
						
						
							
							feat: add ENABLE_DEBUG_LOGGING option to control debug logging output  
						
						
						
					 
					
						2020-07-29 06:00:47 +00:00 
						 
				 
			
				
					
						
							
							
								Jay Zhang 
							
						 
					 
					
						
						
						
						
							
						
						
							36d34073da 
							
						 
					 
					
						
						
							
							Revert "chore: remove compile time debug log control"  
						
						... 
						
						
						
						This reverts commit 1ada466081 
						
					 
					
						2020-07-29 05:10:12 +00:00 
						 
				 
			
				
					
						
							
							
								Jay Zhang 
							
						 
					 
					
						
						
						
						
							
						
						
							1ada466081 
							
						 
					 
					
						
						
							
							chore: remove compile time debug log control  
						
						
						
					 
					
						2019-12-09 17:53:28 +08:00 
						 
				 
			
				
					
						
							
							
								marius 
							
						 
					 
					
						
						
						
						
							
						
						
							6d8cf826d7 
							
						 
					 
					
						
						
							
							modified FSM so that the whitespace between header-key and value is optional  
						
						
						
					 
					
						2019-11-19 18:30:21 +01:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							17f32f4ca1 
							
						 
					 
					
						
						
							
							fix coding format  
						
						
						
					 
					
						2019-10-09 13:35:19 +09:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							542c3ba872 
							
						 
					 
					
						
						
							
							Add singletone class RasterCache to handle global cache data.  
						
						
						
					 
					
						2019-10-09 13:02:59 +09:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							a587b14006 
							
						 
					 
					
						
						
							
							destruct static vector and unorderd_map when last RasterContainer is destructed.  
						
						
						
					 
					
						2019-10-04 17:30:35 +09:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							a9fce74e63 
							
						 
					 
					
						
						
							
							remove unused code (debug code)  
						
						
						
					 
					
						2019-10-04 14:02:57 +09:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							432d49e23d 
							
						 
					 
					
						
						
							
							bugfix: support multiple delimitor.  
						
						
						
					 
					
						2019-10-04 13:50:13 +09:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							e4aaf07879 
							
						 
					 
					
						
						
							
							remove unused lines  
						
						
						
					 
					
						2019-10-03 17:24:42 +09:00 
						 
				 
			
				
					
						
							
							
								Tomonobu Saito 
							
						 
					 
					
						
						
						
						
							
						
						
							d316ff9d41 
							
						 
					 
					
						
						
							
							Improvement of raster source loading to reduce consumed memory size.  
						
						
						
					 
					
						2019-10-03 16:44:27 +09:00 
						 
				 
			
				
					
						
							
							
								Ryan Velazquez 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							921c2f9482 
							
						 
					 
					
						
						
							
							Update kCellsAtMostSameBy comment  
						
						
						
					 
					
						2019-10-02 07:12:42 -04:00 
						 
				 
			
				
					
						
							
							
								Tom Peoples 
							
						 
					 
					
						
						
						
						
							
						
						
							018a9bc804 
							
						 
					 
					
						
						
							
							Removed un-needed calls to std::move  
						
						... 
						
						
						
						These calls were throwing a pessimistic move error and stopping compilation. 
						
					 
					
						2019-09-26 17:55:19 +10:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							746b2e94a0 
							
						 
					 
					
						
						
							
							Formatted the code  
						
						
						
					 
					
						2019-09-10 15:50:13 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							43f60bc69c 
							
						 
					 
					
						
						
							
							We should check, is connections is still open and gracefully return on connection closed by remote.  
						
						
						
					 
					
						2019-09-10 14:32:16 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							145974bc92 
							
						 
					 
					
						
						
							
							clear input/output buffers during keepalive clean-up procedure.  
						
						... 
						
						
						
						Should fix  #5545  
						
					 
					
						2019-09-09 11:20:47 +03:00 
						 
				 
			
				
					
						
							
							
								Lev Dragunov 
							
						 
					 
					
						
						
							
							
						
						
						
							
						
						
							f1a4b70a56 
							
						 
					 
					
						
						
							
							Merge pull request  #5513  from akashihi/flatbuffers  
						
						... 
						
						
						
						Flatbuffers support added 
						
					 
					
						2019-08-29 13:11:24 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							cd7229ba06 
							
						 
					 
					
						
						
							
							connection's reply needs to be reset before handling next request on same connection.  
						
						
						
					 
					
						2019-08-28 17:22:07 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							a9c187c99b 
							
						 
					 
					
						
						
							
							Updated changelog entry  
						
						
						
					 
					
						2019-08-26 11:09:38 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							a44a75b211 
							
						 
					 
					
						
						
							
							Unit tests are compatible with new plugin API.  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							e26a5cc392 
							
						 
					 
					
						
						
							
							Added flatbuffers compatibility to the Node  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							90191c9f34 
							
						 
					 
					
						
						
							
							Added flatbuffers output support to the 'Match' service  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							b7e9e5f2c0 
							
						 
					 
					
						
						
							
							Added flatbuffers output support to the 'Trip' service.  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							affa8a4653 
							
						 
					 
					
						
						
							
							Added flatbuffers output support to the 'Route' service.  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							9d7a74445d 
							
						 
					 
					
						
						
							
							Added flatbuffers output support to the 'Nearest' service.  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							ea111129dd 
							
						 
					 
					
						
						
							
							Added full flatbuffers support to the Table service  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							7ddda105a3 
							
						 
					 
					
						
						
							
							Added flatbuffers support to the PluginBase::Error  
						
						... 
						
						
						
						This changes BREAKS osrm. 
						
					 
					
						2019-08-26 11:08:56 +03:00 
						 
				 
			
				
					
						
							
							
								Denis Chaplygin 
							
						 
					 
					
						
						
						
						
							
						
						
							56406e80ce 
							
						 
					 
					
						
						
							
							Added flatbuffer support to the server request handler.  
						
						
						
					 
					
						2019-08-26 11:08:56 +03:00