[Offline] Fleming Testnet v6.2 Release - Node Support

Looks like y = k * x + b:
uplchart

Log + C# -> Wolfram
        static void Main(string[] args)
        {
            Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;

            var lines = File.ReadAllLines("log.txt");
            var outList = new List<double>();
            foreach (var l in lines)
            {
                var m = Regex.Match(l, "real\t([0-9]+)m([0-9]+.[0-9]+)s");
                if (m.Success)
                    outList.Add(int.Parse(m.Groups[1].Value) * 60 + double.Parse(m.Groups[2].Value));
            }
            File.WriteAllText("result.txt",
                "d={" + string.Join(", ", outList) + "};" + Environment.NewLine + 
                "ListLinePlot[d, PlotRange -> {All, {0, Max[d]}}]");
        }

So real network speed is less than 15 KB / sec.
Please try with different delays. Like 30 sec and 2 sec.

Main question: is it possible to obtain horizontal line on chart?

2 Likes