One test in 'Djiktra - complete' is not working but it's most likely a wrong test/a bug.
public void preProcess() throws InvalidInputException
{
if(getGraph() == null || getSourceNode() == null)
throw new InvalidInputException();| #pragma once | |
| #include <stdbool.h> | |
| #include <stddef.h> | |
| #include <stdlib.h> | |
| #include <limits.h> | |
| #include <stdio.h> | |
| typedef int (*compare_func)(void* a, void* b); |
| protos = [['xdg-shell', '/usr/share/wayland-protocols/unstable/xdg-shell/xdg-shell-unstable-v6.xml']] | |
| wlscanner = find_program('wayland-scanner', required: false) | |
| if wlscanner.found() | |
| proto_targets = [] | |
| foreach proto : protos | |
| code_output = proto[0] + '.c' | |
| header_output = protoc[0] + '.h' |
| #pragma once | |
| #include <kyo/message.hpp> | |
| #include <asio/buffer.hpp> | |
| #include <nytl/span.hpp> | |
| #include <cstdint> | |
| #include <cstddef> | |
| #include <vector> | |
| #include <memory> |
| #include <nytl/vec.hpp> | |
| #include <nytl/vecOps.hpp> | |
| #include <vector> | |
| #include <limits> | |
| using Polygon = std::vector<nytl::Vec2f>; | |
| /// Returns whether the two given convex polygons intersect using the | |
| /// separating axis theorem. The given polygons can be in clockwise or |
| // Copyright (c) 2017 nyorain | |
| // Distributed under the Boost Software License, Version 1.0. | |
| // See accompanying file LICENSE or copy at http://www.boost.org/LICENSE_1_0.txt | |
| #pragma once | |
| #include <unordered_map> // std::unordered_map | |
| #include <thread> // std::thread::id | |
| #include <shared_mutex> // std::shared_mutex | |
| #include <utility> // std::pair |