Revision ad8e9d4f15917a78050e26fb7a846e17f90636e6 authored by Merve Asiler on 03 July 2024, 20:45:15 UTC, committed by GitHub on 03 July 2024, 20:45:15 UTC
1 parent ba0ff13
Raw File
Parameters.h
// @author Merve Asiler

#pragma once

#include <iostream>
#include <string>

using namespace std;

// Parameters for the Approximate Kernel Computation Algorithm

static int number_of_rays = 30;
static int recursion_depth_limit = 3;
static string ray_distribution_type = "geometry-based";

void setNumOfRays(string value);

void setRecDepLim(string value);

void setRayDistType(string value);

void SetParameters();




back to top