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
14#include <memory>
15
16namespace lloyal {
17namespace boundaries {
18
23public:
24 virtual ~BoundaryTracker() = default;
25
26 // Clone interface required by branch::fork()
27 virtual std::unique_ptr<BoundaryTracker> clone() const {
28 return nullptr; // Stub returns nullptr
29 }
30};
31
32} // namespace boundaries
33} // namespace lloyal
Stub BoundaryTracker - does nothing.
virtual std::unique_ptr< BoundaryTracker > clone() const
Boundary Tracker Stub for OSS liblloyal.