Sha256: ff6d9a74d19b99b6989fa47d96d85e36201c802bcf82b4eebb986b31f6bb393f

Contents?: true

Size: 1.51 KB

Versions: 13

Compression:

Stored size: 1.51 KB

Contents

// Copyright (C) 2003  Davis E. King (davis@dlib.net)
// License: Boost Software License   See LICENSE.txt for the full license.
#ifndef DLIB_HASH_SEt_
#define DLIB_HASH_SEt_

#include "hash_set/hash_set_kernel_1.h"
#include "hash_set/hash_set_kernel_c.h"

#include "hash_table.h"
#include "algs.h"


#include "algs.h"
#include <functional>


namespace dlib
{

    template <
        typename T,
        unsigned long expnum,
        typename mem_manager = default_memory_manager,
        typename compare = std::less<T>
        >
    class hash_set
    {
        hash_set() {}

        typedef typename hash_table<T,char,mem_manager,compare>::kernel_1a ht1a;
        typedef typename hash_table<T,char,mem_manager,compare>::kernel_1a ht2a;
        typedef typename hash_table<T,char,mem_manager,compare>::kernel_1a ht2b;

    public:
        
        //----------- kernels ---------------

        // kernel_1a        
        typedef     hash_set_kernel_1<T,expnum,ht1a,mem_manager>
                    kernel_1a;
        typedef     hash_set_kernel_c<kernel_1a>
                    kernel_1a_c;

        // kernel_1b        
        typedef     hash_set_kernel_1<T,expnum,ht2a,mem_manager>
                    kernel_1b;
        typedef     hash_set_kernel_c<kernel_1b>
                    kernel_1b_c;

        // kernel_1c
        typedef     hash_set_kernel_1<T,expnum,ht2b,mem_manager>
                    kernel_1c;
        typedef     hash_set_kernel_c<kernel_1c>
                    kernel_1c_c;




    };
}

#endif // DLIB_HASH_SEt_

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
dlib-1.2.2 ext/dlib-19.4/dlib/hash_set.h
dlib-1.2.1 ext/dlib-19.4/dlib/hash_set.h
dlib-1.2.0 ext/dlib-19.4/dlib/hash_set.h
dlib-1.1.5 ext/dlib-19.4/dlib/hash_set.h
dlib-1.1.4 ext/dlib-19.4/dlib/hash_set.h
dlib-1.1.3 ext/dlib-19.4/dlib/hash_set.h
dlib-1.1.2 ext/dlib-19.4/dlib/hash_set.h
dlib-1.1.1 ext/dlib-19.4/dlib/hash_set.h
dlib-1.1.0 ext/dlib-19.4/dlib/hash_set.h
dlib-1.0.3 ext/dlib-18.13/dlib/hash_set.h
dlib-1.0.2 ext/dlib-18.13/dlib/hash_set.h
dlib-1.0.1 ext/dlib-18.13/dlib/hash_set.h
dlib-1.0.0 ext/dlib-18.13/dlib/hash_set.h