-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGAInputLayer.m
More file actions
31 lines (24 loc) · 786 Bytes
/
Copy pathGAInputLayer.m
File metadata and controls
31 lines (24 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
classdef GAInputLayer < InputLayer & GALayer
%GAINPUTLAYER Summary of this class goes here
% Detailed explanation goes here
properties
end
methods
function gainput = GAInputLayer(units)
%INPUTLAYER Construct an instance of this class
% Detailed explanation goes here
gainput = gainput@InputLayer(units);
end
function mutate(~, ~)
end
function crossover(~, ~, ~)
end
function newlayer = copy(layer)
newlayer = GAInputLayer(layer.units);
layer.move(newlayer);
end
function newlayer = move(layer, newlayer)
move@InputLayer(layer, newlayer);
end
end
end