Skip to content
Snippets Groups Projects
Select Git revision
  • f6118601974aabd2017e330fd9ce94f0a8026d51
  • master default
  • JS-based-scroll-rendering
  • Paul_Marius_Level
  • Paul_Marius_2
  • Paul_Marius
  • Andi_Mark
  • be-UnityWebView
  • gitignoreFrameitServer
  • ZimmerBSc
  • Bugfix_StageLoading
  • stages
  • MAZIFAU_Experimental
  • tsc/coneworld
  • tsc/fact-interaction
  • marcel
  • MaZiFAU_TopSort
  • mergeHelper
  • zwischenSpeichern
  • tempAndrToMaster
  • SebBranch
  • 3.0
  • v2.1
  • v2.0
  • v1.0
25 results

EditorBuildSettings.asset

Blame
  • GoT.pl 837 B
    %% tywin.
    %% joanna.
    
    %% jamie.
    %% tyrion.
    %% cersei.
    
    %% robert.
    
    %% joffrey.
    %% myrcella.
    %% tommen.
    
    father_of(tywin,jamie).
    father_of(tywin,tyrion).
    father_of(tywin,cersei).
    
    father_of(robert,joffrey).
    father_of(robert,myrcella).
    father_of(robert,tommen).
    
    
    mother_of(joanna,jamie).
    mother_of(joanna,cersei).
    mother_of(joanna,tyrion).
    
    mother_of(cersei,joffrey).
    mother_of(cersei,myrcella).
    mother_of(cersei,tommen).
    
    
    father(Person):-
    	father_of(Person,_).
    
    lannister(tywin).
    lannister(Person):-
    	father_of(Father,Person),
    	lannister(Father).
    
    
    baratheon(robert).
    baratheon(Person):-
    	father_of(Father,Person),
    	baratheon(Father).
    
    
    sibling_of(Sibling1, Sibling2):-
    	father_of(Father, Sibling1),
    	father_of(Father, Sibling2),
    	mother_of(Mother, Sibling1),
    	mother_of(Mother, Sibling2),
    	Sibling1 \= Sibling2,
    	Sibling1 @> Sibling2.