lean2/src/interval/interval.cpp

18 lines
470 B
C++
Raw Normal View History

/*
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"
2013-08-07 02:54:54 +00:00
#include "double.h"
namespace lean {
template class interval<mpq>;
template class interval<double>;
}
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; }