lean2/src/frontend/builtin_notation.cpp
Leonardo de Moura 790d4a4447 Move pretty printer to frontend. Add support for mixfix pretty printing
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2013-08-15 19:02:28 -07:00

19 lines
487 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 "frontend.h"
#include "builtin.h"
namespace lean {
/**
\brief Initialize builtin notation.
*/
void init_builtin_notation(frontend & f) {
f.add_infixl("\u2227", 13, const_name(mk_and_fn()));
f.add_infixl("\u2228", 14, const_name(mk_or_fn()));
f.add_prefix("\u00ac", 3, const_name(mk_not_fn()));
}
}