2013-07-19 03:21:41 +00:00
|
|
|
/*
|
2013-07-19 17:29:33 +00:00
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
2013-07-19 03:21:41 +00:00
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
2013-07-19 17:29:33 +00:00
|
|
|
Author: Leonardo de Moura
|
2013-07-19 03:21:41 +00:00
|
|
|
*/
|
|
|
|
#include "interval_def.h"
|
|
|
|
#include "mpq.h"
|
2013-08-07 02:54:54 +00:00
|
|
|
#include "double.h"
|
2013-07-19 03:21:41 +00:00
|
|
|
|
|
|
|
namespace lean {
|
|
|
|
template class interval<mpq>;
|
|
|
|
template class interval<double>;
|
|
|
|
}
|
|
|
|
|
2013-08-07 19:10:10 +00:00
|
|
|
void print(lean::interval<lean::mpq> const & i) { std::cout << i << std::endl; }
|
|
|
|
void print(lean::interval<double> const & i) { std::cout << i << std::endl; }
|