rv::som:: moved SOM to a subdirectory

This commit is contained in:
Zeno Rogue 2022-04-21 11:53:33 +02:00
parent 5e0bd689ef
commit 733d5e5e0e
3 changed files with 9 additions and 7 deletions

View File

@ -1,3 +1,6 @@
// here the embeddings used in our experiments are implemented
// Copyright (C) 2011-2022 Tehora and Zeno Rogue, see 'hyper.cpp' for details
#include "kohonen.h"
namespace rogueviz {

View File

@ -1,8 +1,5 @@
// Hyperbolic Rogue
// Copyright (C) 2011-2018 Zeno and Tehora Rogue, see 'hyper.cpp' for details
// Kohonen's self-organizing maps.
// This is a part of RogueViz, not a part of HyperRogue.
// the general implementation of non-Euclidean self-organizing maps
// Copyright (C) 2011-2022 Tehora and Zeno Rogue, see 'hyper.cpp' for details
#include "kohonen.h"

View File

@ -1,8 +1,10 @@
/* a header file for kohonen and embedding */
// a header file for kohonen and embedding
// Copyright (C) 2011-2022 Tehora and Zeno Rogue, see 'hyper.cpp' for details
#ifndef _KOHONEN_H_
#define _KOHONEN_H_
#include "rogueviz.h"
#include "../rogueviz.h"
namespace rogueviz {