aboutsummaryrefslogtreecommitdiff
path: root/doc/diagrams/interfaces.puml
diff options
context:
space:
mode:
authorInigoGutierrez <inigogf.95@gmail.com>2022-06-25 19:56:48 +0200
committerInigoGutierrez <inigogf.95@gmail.com>2022-06-25 19:56:48 +0200
commit77764bee49c93a5d08d134cf7919b7f84a997e20 (patch)
tree361c57d16e578b8ce1cc1bdd7c5c694c08744432 /doc/diagrams/interfaces.puml
parentf57799a2b45cf7ad76ca9cff32cb4d1d86c2f2c4 (diff)
downloadimago-77764bee49c93a5d08d134cf7919b7f84a997e20.tar.gz
imago-77764bee49c93a5d08d134cf7919b7f84a997e20.zip
Back to the documentation after creating neural networks.
Diffstat (limited to 'doc/diagrams/interfaces.puml')
-rw-r--r--doc/diagrams/interfaces.puml20
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/diagrams/interfaces.puml b/doc/diagrams/interfaces.puml
new file mode 100644
index 0000000..3ade81e
--- /dev/null
+++ b/doc/diagrams/interfaces.puml
@@ -0,0 +1,20 @@
+@startuml
+
+!include ./skinparams.puml
+
+component Game
+component Engine
+component Trainer
+
+interface "Game text interface" as GTI
+interface "Engine text interface" as ETI
+interface "Neural network model" as NNM
+interface "SGF files" as SGF
+
+Game -- GTI
+Engine -- ETI
+Engine -- NNM
+Trainer -- NNM
+Trainer -- SGF
+
+@enduml