Set incomplete if not applying ho extensionality (#6281)
[cvc5.git] / src / util / index.h
1 /********************* */
2 /*! \file index.h
3 ** \verbatim
4 ** Top contributors (to current version):
5 ** Mathias Preiner, Tim King
6 ** This file is part of the CVC4 project.
7 ** Copyright (c) 2009-2021 by the authors listed in the file AUTHORS
8 ** in the top-level source directory and their institutional affiliations.
9 ** All rights reserved. See the file COPYING in the top-level source
10 ** directory for licensing information.\endverbatim
11 **
12 ** \brief Standardized type for efficient array indexing.
13 **
14 ** Standardized type for efficient array indexing.
15 **/
16
17 #include "cvc4_private.h"
18
19 #ifndef CVC4__INDEX_H
20 #define CVC4__INDEX_H
21
22 namespace cvc5 {
23
24 /** Index is a standardized unsigned integer used for efficient indexing. */
25 using Index = uint32_t;
26
27 } // namespace cvc5
28
29 #endif /* CVC4__INDEX_H */