Open C++ Libraries.org develop
Loading...
Searching...
No Matches
dijkstra.inl
1// SPDX-License-Identifier: BSL-1.0
2// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
3// Distributed under the Boost Software License, Version 1.0. (See accompanying
4// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5// Official repository: https://github.com/open-cpp-libraries/tproc
6
7namespace ocl::tproc
8{
9
10 template <>
11 inline void dijkstra(double&) = delete;
12
13 template <>
14 inline void dijkstra(void*&) = delete;
15
16 template <>
17 inline void dijkstra(char*&) = delete;
18
19 template <>
20 inline void dijkstra(int&) = delete;
21
22} // namespace ocl::tproc
AMLALE: SourcePair desrves documentation by themselves.
Definition bfs.hpp:13
void dijkstra(SourcePair &pair)
Implementation of dijkstra's algorithm.
Definition dijkstra.hpp:20