📄 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 + -