From 7ec30058750611786b1b597816c8a23e28bb5812 Mon Sep 17 00:00:00 2001 From: Aina Niemetz Date: Mon, 12 Apr 2021 12:31:43 -0700 Subject: Refactor and update copyright headers. (#6316) --- src/util/dense_map.h | 53 ++++++++++++++++++++++++++-------------------------- 1 file changed, 27 insertions(+), 26 deletions(-) (limited to 'src/util/dense_map.h') diff --git a/src/util/dense_map.h b/src/util/dense_map.h index f3b0372b2..3d56243da 100644 --- a/src/util/dense_map.h +++ b/src/util/dense_map.h @@ -1,29 +1,30 @@ -/********************* */ -/*! \file dense_map.h - ** \verbatim - ** Top contributors (to current version): - ** Tim King, Dejan Jovanovic, Mathias Preiner - ** This file is part of the CVC4 project. - ** Copyright (c) 2009-2021 by the authors listed in the file AUTHORS - ** in the top-level source directory and their institutional affiliations. - ** All rights reserved. See the file COPYING in the top-level source - ** directory for licensing information.\endverbatim - ** - ** \brief This is an abstraction of a Map from unsigned integers to elements - ** of type T. - ** - ** This is an abstraction of a Map from an unsigned integer to elements of - ** type T. - ** This class is designed to provide constant time insertion, deletion, - ** element_of, and fast iteration. This is done by storing backing vectors of - ** size greater than the maximum key. - ** This datastructure is appropriate for heavy use datastructures where the - ** Keys are a dense set of integers. - ** - ** T must support T(), and operator=(). - ** - ** The derived utility classes DenseSet and DenseMultiset are also defined. - **/ +/****************************************************************************** + * Top contributors (to current version): + * Tim King, Dejan Jovanovic, Mathias Preiner + * + * This file is part of the cvc5 project. + * + * Copyright (c) 2009-2021 by the authors listed in the file AUTHORS + * in the top-level source directory and their institutional affiliations. + * All rights reserved. See the file COPYING in the top-level source + * directory for licensing information. + * **************************************************************************** + * + * This is an abstraction of a Map from unsigned integers to elements + * of type T. + * + * This is an abstraction of a Map from an unsigned integer to elements of + * type T. + * This class is designed to provide constant time insertion, deletion, + * element_of, and fast iteration. This is done by storing backing vectors of + * size greater than the maximum key. + * This datastructure is appropriate for heavy use datastructures where the + * Keys are a dense set of integers. + * + * T must support T(), and operator=(). + * + * The derived utility classes DenseSet and DenseMultiset are also defined. + */ #include "cvc4_private.h" -- cgit v1.2.3