?? layer.h
字號:
/*
filename: layer.h
function: the basic layer
date : 2008-12-21
author : loop111
e-mail : loop111@gmail.com
*/
#ifndef LAYER_H
#define LAYER_H
#include "NerveCell.h"
namespace NeuralNet
{
class Layer//a NerveCell list
{
public:
NerveCellList layer;
int num;
Layer(){}
};
typedef Layer* pLayer;
class LayerList
{
public:
pLayer head;
pLayer next;
pLayer up;
pLayer down;
};
}
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -