Esempio n. 1
0
        public async Task <Responce> PostGraphAsync([FromBody] InputGraph input)
        {
            var converted = await GraphHelpers.GraphToMatrixAsync(input);

            return(await PostAsync(converted));
        }
Esempio n. 2
0
        public async Task <Responce> GlrTestGraphAsync([FromBody] InputGraph input, int maxSubNodesCount = 3, int maxTreeDepth = 5)
        {
            var converted = await GraphHelpers.GraphToMatrixAsync(input);

            return(await GlrTestAsync(converted, maxSubNodesCount, maxTreeDepth));
        }