sc-machine icon indicating copy to clipboard operation
sc-machine copied to clipboard

Software implementation of semantic network storage and processing

Results 91 sc-machine issues
Sort by recently updated
recently updated
newest added

Generate action for agent call just after knowledge base build. Depends on: #386

P0

This agent should: 1. be initiated after finish of knowledge build; 2. find all sc-construction with explicit subtype indication. For example: ![image](https://user-images.githubusercontent.com/8680298/105480490-dd356780-5cb6-11eb-9010-85f873fb6d12.png) 3. Indicate subtype on sc-core level: ![image](https://user-images.githubusercontent.com/8680298/105480664-15d54100-5cb7-11eb-8352-f5e1d0d9320b.png) 5....

Improvement
P0

https://en.cppreference.com/w/cpp/language/range-for

P1

`ScTemplateNamedStruct` builds every time from scratch for each iteration. This code is in ```cpp void MakeResult() { ScTemplateNamedStruct::Builder builder(m_result); for (auto const & r : m_repls) { SC_ASSERT(r.second.addr.IsValid(), ()); builder.Add(r.first,...

P0

List of critical places: - [ ] New iterator - [ ] Named struct

P0

- [ ] Remove access to global context - [ ] Replace `m_memoryCtx` with shorter name - [ ] Improve documentation

P1

Remove processing of sc-element subtype from scsloader. For example, if we have construction like: ``` sc_node_norole_relation -> nrel_goto; ```` Current implementation will load it as: ![image](https://user-images.githubusercontent.com/8680298/105478344-20daa200-5cb4-11eb-9972-90021e7493e2.png) New implementation should load...

Refactoring
P0

file1: a -> b;; file2: @contour = [* node0 nrel_system_identifier: a;; If file1 will be processed before file2, two element with id "a" will be generated, and context of this...

Improvement
P0

Idea to implement this framework with a python. There should be a Python script, that parse files in a specified directory and run tests. Each file contains one scenario: ```...

Test
P0