lean2/src/interval/interval.cpp
Leonardo de Moura c581990f67 Clean white-spaces
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-07-19 10:29:33 -07:00

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; }