mirror of https://github.com/mamba-org/mamba.git
14 lines
404 B
C++
14 lines
404 B
C++
#ifndef MAMBA_SOLVER_HPP
|
|
#define MAMBA_SOLVER_HPP
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
std::tuple<std::vector<std::tuple<std::string, std::string, std::string>>,
|
|
std::vector<std::tuple<std::string, std::string>>>
|
|
solve(std::vector<std::pair<std::string, std::string>> repos,
|
|
std::string installed,
|
|
std::vector<std::string> jobs,
|
|
bool strict_priority);
|
|
|
|
#endif |