2013-08-08 02:10:12 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#pragma once
|
2013-12-19 20:46:14 +00:00
|
|
|
#include <limits>
|
2013-08-08 02:10:12 +00:00
|
|
|
namespace lean {
|
2013-08-18 22:44:39 +00:00
|
|
|
constexpr unsigned g_eq_precedence = 50;
|
2013-12-06 21:23:20 +00:00
|
|
|
constexpr unsigned g_arrow_precedence = 25;
|
2013-12-19 20:46:14 +00:00
|
|
|
constexpr unsigned g_app_precedence = std::numeric_limits<unsigned>::max();
|
2013-08-08 02:10:12 +00:00
|
|
|
}
|