Ejemplo n.º 1
0
	Parallel* get_global_parallel()
	{
		SG_REF(sg_parallel);
		return sg_parallel;
	}
Ejemplo n.º 2
0
	void set_global_version(Version* version)
	{
		SG_REF(version);
		SG_UNREF(sg_version);
		sg_version=version;
	}
Ejemplo n.º 3
0
	SGIO* get_global_io()
	{
		SG_REF(sg_io);
		return sg_io;
	}
Ejemplo n.º 4
0
	void set_global_parallel(Parallel* parallel)
	{
		SG_REF(parallel);
		SG_UNREF(sg_parallel);
		sg_parallel=parallel;
	}
Ejemplo n.º 5
0
CTraceSampler* CLogDetEstimator::get_trace_sampler(void) const
{
	SG_REF(m_trace_sampler);
	return m_trace_sampler;
}
Ejemplo n.º 6
0
	void set_global_io(SGIO* io)
	{
		SG_REF(io);
		SG_UNREF(sg_io);
		sg_io=io;
	}
Ejemplo n.º 7
0
CKernel* CEmbeddingConverter::get_kernel() const
{
	SG_REF(m_kernel);
	return m_kernel;
}
Ejemplo n.º 8
0
	CMath* get_global_math()
	{
		SG_REF(sg_math);
		return sg_math;
	}
Ejemplo n.º 9
0
CDistance* CEmbeddingConverter::get_distance() const
{
	SG_REF(m_distance);
	return m_distance;
}
Ejemplo n.º 10
0
void CEmbeddingConverter::set_kernel(CKernel* kernel)
{
	SG_UNREF(m_kernel);
	SG_REF(kernel);
	m_kernel = kernel;
}
Ejemplo n.º 11
0
void CEmbeddingConverter::set_distance(CDistance* distance)
{
	SG_UNREF(m_distance);
	SG_REF(distance);
	m_distance = distance;
}
Ejemplo n.º 12
0
COperatorFunction<float64_t>* CLogDetEstimator::get_operator_function(void) const
{
	SG_REF(m_operator_log);
	return m_operator_log;
}
Ejemplo n.º 13
0
CIndependentComputationEngine* CLogDetEstimator::get_computation_engine(void) const
{
	SG_REF(m_computation_engine);
	return m_computation_engine;
}
Ejemplo n.º 14
0
	Version* get_global_version()
	{
		SG_REF(sg_version);
		return sg_version;
	}
CIndicesTree* CFeatureTreeLeastSquaresRegression::get_feature_tree() const
{
	SG_REF(m_feature_tree);
	return m_feature_tree;
}
Ejemplo n.º 16
0
	void set_global_math(CMath* math)
	{
		SG_REF(math);
		SG_UNREF(sg_math);
		sg_math=math;
	}
void CFeatureTreeLeastSquaresRegression::set_feature_tree(CIndicesTree* feature_tree)
{
	SG_UNREF(m_feature_tree);
	SG_REF(feature_tree);
	m_feature_tree = feature_tree;
}
Ejemplo n.º 18
0
	void set_global_rand(CRandom* rand)
	{
		SG_REF(rand);
		SG_UNREF(sg_rand);
		sg_rand=rand;
	}
Ejemplo n.º 19
0
	CRandom* get_global_rand()
	{
		SG_REF(sg_rand);
		return sg_rand;
	}