Yilin Xia

Results 8 issues of Yilin Xia

Hi there, recently we are using the JSNetworkX to construct visualizations. By looking at the documents and the code (some referenece website don't work now), we haven't found a proper...

Hi @EvgSkv , When working with Logica scripts across multiple cells, I've identified a potential enhancement (unless it's already implemented). For comparison, in Jupyter, when executing an SQL query, I...

I am using the current packages within Python 3.11.3 conda env ``` logica == 1.3.141592 graphviz == 0.20.1 jupyterlab == 3.5.3 ``` and I want to execute ``` from logica.common...

I tried to pass one predicate to another with the following scripts on local PC ``` %%logica Child @Engine("sqlite"); @AttachDatabase("mydata", "my_database.db"); @Dataset("ParentTable"); Parent(..r) :- mydata.ParentTable(..r); Child(x):- Parent(child:x); ``` The Child...

Hi, When running the following script ``` %%logica Lowest_Common_Ancestors_with_Name @Engine("sqlite"); @AttachDatabase("mgdb","mgdb.db"); @Dataset("advised"); @Dataset("person"); @Dataset("dissertation"); Adv_Stu(advisor:, student:author) :- Advised(did:x, advisor:),Dissertation(did:y, author:), x=y; @Recursive(Anc,33); Anc(ancestor:advisor, student:m) distinct :- Adv_Stu(advisor:, student:m), m=63244; Anc(ancestor:x,...

`psql` tests have been used to help implement duckdb. This issue aims to record all test related issues 1. For test `psql_arg_min_max_k_test.l`, it should be `Test(opt: "Min", arg_opt: TestArgMin(), arg_opt_k:...

Currently, Logica embeds OpenAI as the default backend for AI-powered inference within rules — a move toward the NeuroSymbolic paradigm. Example below ``` Species(name: "lion"); Species(name: "tiger"); Species(name: "crocodile"); Species(name:...

Working Case ``` Example("'case'"); ``` ✅ Correctly recognized as a valid call. Failing Case ``` Example('"case"'); ``` ❌ Produces error: ``` [ Error ] Found no call in rule head....