Ilya Builuk

Results 115 comments of Ilya Builuk

Thanks for reporting. However, ASM is just Proof of Concept and I'm not working on it anymore. Rather than fix issues, I started new project here: https://github.com/reinterpretcat/utymap/ It has slightly...

Thanks for information. Is there any way to fix the crash and have behavior similar to .NET port? It is much better than crash. Sometimes it is not possible to...

According to https://en.wikipedia.org/wiki/Magic_number_(programming), 0xcdcdcdcd is uninitialized heap memory. Just checked: looks like compiling in Win32 release helped, but not in x64.

In x64 release, I was able to fix it with additional check: _if (encodedtri != (triangle)NULL && vertextype(endpoint1) != UNDEADVERTEX)_

I'm not expert in C too. I've just checked your solution and it seems to work too: ``` f (!b->quiet) { printf( "Warning: A duplicate vertex at (%.12g, %.12g) appeared...

no, this was not implemented

Optionally, you can get geojson output for pragmatic format if you're using coordinates in the problem definition. This is really helpful for algorithm development. However, as the solver uses routing...

Hi, the solver doesn't support drivers with pragmatic format yet, only vehicle types are supported. > I wonder if its possible to modell with pickup deliveries fixed time windows, fixed...

No, it is not. However, the internal api is designed to support this in the future: https://github.com/reinterpretcat/vrp/blob/master/vrp-core/src/models/problem/fleet.rs#L30-L44 Check its usage

My idea was to use `Actor` model within tour which consists of joined data from a driver and a car: https://github.com/reinterpretcat/vrp/blob/master/vrp-core/src/models/problem/fleet.rs#L95-L104 At the moment, the missing part is to build...