LCOV - code coverage report
Current view: top level - app/include/Opt - SolverWithInitialSolutions.hpp (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1 4 25.0 %
Date: 2023-08-17 16:45:52 Functions: 0 1 0.0 %

          Line data    Source code
       1             : #pragma once
       2             : 
       3             : #include "Opt/UnivariateSolver.hpp"
       4             : 
       5             : namespace Opt {
       6          14 : class SolverWithInitialSolutions: public UnivariateSolver {
       7             :    public:
       8             :     virtual void addInitialSolution(Var v) = 0;
       9             : 
      10             :     template<typename... Args>
      11           0 :     void addInitialSolutions(Args... args) {
      12           0 :         (addInitialSolution(args), ...);
      13           0 :     }
      14             : 
      15             :     virtual void clearInitialSolutions() = 0;
      16             : };
      17             : }  // namespace Opt

Generated by: LCOV version 1.14