Skip to content
Snippets Groups Projects
Select Git revision
  • 860023ed43d1710a1defd9bedfc5b5d2ed602dc1
  • master default protected
  • multiprocessing
  • experiment/clara
  • experiment/spec2B-poc
  • experiment/qivalio-poc
  • experiment/ertms
  • MAY-2023
  • FEB-2023
  • EGC-2023
  • 0.2.1
  • v0.2.0
  • v0.1.2
13 results

cts_generation.py

Blame
  • cts_generation.py 1.61 KiB
    #!/usr/bin/python3.10
    # -*-coding:Utf-8 -*
    
    #==============================================================================
    # TENET: CTS Generation
    #------------------------------------------------------------------------------
    # Module to generate transduction schemes (CTS) as well-formed SPARQL queries
    #==============================================================================
    
    #==============================================================================
    # Importing required modules
    #==============================================================================
    
    from subprocess import Popen, PIPE
    import os
    
    
    #==============================================================================
    # Parameters
    #==============================================================================
    
    # None
    
    
    #==============================================================================
    # --
    #==============================================================================
    
    # TODO
         
        
        
    #==============================================================================
    # --
    #==============================================================================
        
    # TODO 
       
         
    #==============================================================================
    # Main Function
    #==============================================================================   
    
    def apply(config, work_graph):
        """ apply inference processes on the working graph """
        
        try:
            print("\n" + "[Tenet] CTS Generation")
            print("\n" + "-- *** DEVELOPMENT IN PROGRESS ***")
        
        except:
            print("!!! An exception occurred !!!")