mirror of
https://github.com/Z3Prover/z3
synced 2025-09-03 16:48:06 +00:00
10 lines
349 B
C++
10 lines
349 B
C++
/*
|
|
Copyright (c) 2017 Microsoft Corporation
|
|
Author: Lev Nachmanson
|
|
*/
|
|
#include "util/vector.h"
|
|
#include <memory>
|
|
#include "util/lp/lp_settings.hpp"
|
|
template bool lean::vectors_are_equal<double>(vector<double> const&, vector<double> const&);
|
|
template bool lean::vectors_are_equal<lean::mpq>(vector<lean::mpq > const&, vector<lean::mpq> const&);
|
|
|