From 8df7c6cf34510da6febde4d7bad9981b2deea23d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=BE=D1=80=D0=BE=D0=B7=D0=BE=D0=B2=20=D0=90=D0=BD?= =?UTF-8?q?=D0=B4=D1=80=D0=B5=D0=B9?= Date: Thu, 21 Oct 2021 12:37:43 +0000 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=B3=D1=80=D1=83=D0=B7=D0=B8?= =?UTF-8?q?=D0=BB(=D0=B0)=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=B2=20'bin?= =?UTF-8?q?'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/main.dart | 22 ++++++++++++++-------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/bin/main.dart b/bin/main.dart index 10f90fc..bddfcee 100644 --- a/bin/main.dart +++ b/bin/main.dart @@ -2,16 +2,22 @@ import 'src/graph.dart'; void main(List arguments) { Map x = {}; - x[1] = 5; x[2] = 10; - var p = Dot.fromMap("Точка 1", 1, x); - p.addPath(3, 20); - var x1 = Graphs([p], true); + x[4] = 50; + var p = Dot.fromMap("Точка 1", x); + p.printD(); + x = {}; + var x1 = Graphs.fromList("Граф 1", [p], true); + x[1] = 5; + p = Dot.fromMap("Точка 2", x); + x1.addDot(p); x1.printG(); - p.delPath(4); + x = {}; x1.printG(); - /*var p2 = Dot("Точка 2", 2, x); - x1.addDot(p2); + x1.addDot(Dot.fromTwoLists("T3", [1, 2], [10, 20])); x1.printG(); - x1.checkDots();*/ + x1.checkDots(true); + x1.printG(); + x1.toFile("out.txt"); + Graphs.fromFile("out.txt"); }