c581990f67
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
18 lines
446 B
C++
18 lines
446 B
C++
/*
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#include "interval_def.h"
|
|
#include "mpq.h"
|
|
|
|
namespace lean {
|
|
|
|
template class interval<mpq>;
|
|
template class interval<double>;
|
|
|
|
}
|
|
|
|
void pp(lean::interval<lean::mpq> const & i) { std::cout << i << std::endl; }
|
|
void pp(lean::interval<double> const & i) { std::cout << i << std::endl; }
|