Skip to content

Commit 52abac4

Browse files
committed
Refactored IgANets classes
1 parent efc53e8 commit 52abac4

File tree

12 files changed

+1984
-3093
lines changed

12 files changed

+1984
-3093
lines changed

include/net.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414

1515
#pragma once
1616

17+
#include <net/activation.hpp>
1718
#include <net/igabase.hpp>
1819
#include <net/iganet.hpp>
19-
#include <net/layer.hpp>
2020
#include <net/optimizer.hpp>
21+
#include <net/v1/iganet.hpp>
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
@file net/layer.hpp
2+
@file net/activation.hpp
33
4-
@brief Network layer
4+
@brief Activation functions
55
66
@author Matthias Moller
77
@@ -14,6 +14,7 @@
1414

1515
#pragma once
1616

17+
#include <iostream>
1718
#include <utility>
1819

1920
#include <core/core.hpp>

include/net/generator.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020

2121
#include <core/core.hpp>
2222
#include <core/options.hpp>
23-
#include <net/layer.hpp>
23+
#include <net/activation.hpp>
24+
#include <utils/zip.hpp>
2425

2526
namespace iganet {
2627

0 commit comments

Comments
 (0)