liblloyal 1.0.0
Branched Inference for llama.cpp
Loading...
Searching...
No Matches
boundaries.hpp
Go to the documentation of this file.
1#pragma once
2
3// SPDX-License-Identifier: Apache-2.0
4// Copyright 2026 Lloyal Labs
5
17#include <memory>
18
19namespace lloyal {
20namespace boundaries {
21
26public:
27 virtual ~BoundaryTracker() = default;
28
29 // Clone interface required by branch::fork()
30 virtual std::unique_ptr<BoundaryTracker> clone() const {
31 return nullptr; // Stub returns nullptr
32 }
33};
34
35} // namespace boundaries
36} // namespace lloyal
Stub BoundaryTracker - does nothing.
virtual std::unique_ptr< BoundaryTracker > clone() const
Boundary Tracker Stub for OSS liblloyal.