Skip to content

Instantly share code, notes, and snippets.

@gajdosech2
gajdosech2 / address.txt
Created June 27, 2021 17:52
File containing an Celo Alfajores testnet address used to complete bounty https://gitcoin.co/issue/celo-org/gitcoin/7/100024749
0x0E1E7cA5C9DD71F74a090B5b7B39Ed678894F3fe
@gajdosech2
gajdosech2 / Druhy.txt
Last active October 14, 2019 14:06
DU1 PBAAMM
Toto je druhý súbor.
@gajdosech2
gajdosech2 / Benchmark.cpp
Last active July 4, 2019 14:22
Points in Radius Search using Octree - Benchmark
#include "Benchmark.h"
#include <chrono>
uint32_t Benchmark::n = 1000;
void Benchmark::Run(uint32_t n)
{
Benchmark::n = n;
std::vector<SimpleVector> vectors = GenerateRandomVectors();
auto PCLOctree = GeneratePCLOctree(vectors);