1 #ifndef STAN_LANG_AST_NODE_LUB_IDX_DEF_HPP
2 #define STAN_LANG_AST_NODE_LUB_IDX_DEF_HPP
3 
4 #include <stan/lang/ast.hpp>
5 
6 namespace stan {
7   namespace lang {
8 
lub_idx()9     lub_idx::lub_idx() { }
10 
lub_idx(const expression & lb,const expression & ub)11     lub_idx::lub_idx(const expression& lb, const expression& ub)
12       : lb_(lb), ub_(ub) {  }
13 
14   }
15 }
16 #endif
17