BitMagic-C++
Typedefs | Functions | Variables
xsample05.cpp File Reference

Example: Example on how to use bit-transposed string sparse vector. More...

#include <iostream>
#include <sstream>
#include <chrono>
#include <regex>
#include <time.h>
#include <stdio.h>
#include <vector>
#include <map>
#include <utility>
#include <algorithm>
#include <random>
#include "bm.h"
#include "bmalgo.h"
#include "bmserial.h"
#include "bmrandom.h"
#include "bmstrsparsevec.h"
#include "bmsparsevec_algo.h"
#include "bmsparsevec_serial.h"
#include "bmalgo_similarity.h"
#include "bmsparsevec_util.h"
#include "bmdbg.h"
#include "bmtimer.h"
#include "bmundef.h"
Include dependency graph for xsample05.cpp:

Go to the source code of this file.

Typedefs

typedef bm::str_sparse_vector< char, bm::bvector<>, 64 > str_sparse_vect
 
typedef vector< string > string_vector
 

Functions

static void show_help ()
 Print help. More...
 
static int parse_args (int argc, char *argv[])
  More...
 
static int load_dict_report (const std::string &fname, string_vector &str_vec)
 Parse the input file and extract dictionary values. More...
 
static void check_sparse (const str_sparse_vect &str_sv, const string_vector &str_vec)
 Compare STL vector with bit-transposed container to check correctness. More...
 
static void pick_benchmark_set (string_vector &bench_vec, string_vector &bench_vec_not_found, const string_vector &str_vec)
 Sample a few random terms out of collection. More...
 
static void run_benchmark (const str_sparse_vect &str_sv, const string_vector &str_vec)
  More...
 
int main (int argc, char *argv[])
  More...
 

Variables

std::string sv_out_name
  More...
 
std::string sv_in_name
  More...
 
std::string i_name
  More...
 
bool is_diag = false
  More...
 
bool is_timing = false
  More...
 
bool is_bench = false
  More...
 
bool is_remap = false
  More...
 
bool is_xor = false
  More...
 
bm::chrono_taker ::duration_map_type timing_map
  More...
 
const unsigned benchmark_max = 50000
  More...
 

Detailed Description

Example: Example on how to use bit-transposed string sparse vector.

Illustrates how to build a sparse vector, serialize it to disk, load back and do search or binary hybrid search.

See also
bm::str_sparse_vector<>

Definition in file xsample05.cpp.

Function Documentation

◆ check_sparse()

static void check_sparse ( const str_sparse_vect str_sv,
const string_vector str_vec 
)
static

Compare STL vector with bit-transposed container to check correctness.

Examples
xsample05.cpp.

Definition at line 248 of file xsample05.cpp.

References bm::str_sparse_vector< CharType, BV, STR_SIZE >::get(), and bm::str_sparse_vector< CharType, BV, STR_SIZE >::size().

Referenced by main().

◆ load_dict_report()

static int load_dict_report ( const std::string &  fname,
string_vector str_vec 
)
static

Parse the input file and extract dictionary values.

Examples
xsample05.cpp.

Definition at line 198 of file xsample05.cpp.

References timing_map.

Referenced by main().

◆ main()

int main ( int  argc,
char *  argv[] 
)

◆ parse_args()

static int parse_args ( int  argc,
char *  argv[] 
)
static
Examples
xsample05.cpp.

Definition at line 98 of file xsample05.cpp.

References i_name, is_bench, is_diag, is_remap, is_timing, is_xor, show_help(), sv_in_name, and sv_out_name.

Referenced by main().

◆ pick_benchmark_set()

static void pick_benchmark_set ( string_vector bench_vec,
string_vector bench_vec_not_found,
const string_vector str_vec 
)
static

Sample a few random terms out of collection.

Examples
xsample05.cpp.

Definition at line 270 of file xsample05.cpp.

References benchmark_max, gen(), rand_dev, rand_dis(), bm::bvector< Alloc >::resize(), bm::bvector< Alloc >::set(), and bm::bvector< Alloc >::test().

Referenced by run_benchmark().

◆ run_benchmark()

static void run_benchmark ( const str_sparse_vect str_sv,
const string_vector str_vec 
)
static

◆ show_help()

static void show_help ( )
static

Print help.

Examples
xsample05.cpp.

Definition at line 69 of file xsample05.cpp.

Referenced by main(), and parse_args().