⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 o_node.cpp

📁 本文介绍了一个用java语言编写的用于分析消费行为的数据挖掘应用软件
💻 CPP
字号:
// O_Node.cpp: implementation of the CO_Node class.
//
//////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "O_Node.h"

#include "CBA_SYSTEM.h"
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CO_Node::CO_Node()
{
    Bias=0;
	Err=0;
}
CO_Node::CO_Node(short o_id,float bias)
{
	SetId(o_id);
	Bias=bias;
}
void CO_Node::SetBias(float bias)
{
	Bias=bias;
}
float CO_Node::GetBias()
{
	return Bias;
}
void CO_Node::SetErr(float err)
{
	Err=err;
}
float CO_Node::GetErr()
{
	return Err;
}
void CO_Node::SetT(float t)
{
	T = t;
}
float CO_Node::GetT()
{
	return T;
}
CO_Node::~CO_Node()
{

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -