Created
March 14, 2017 17:09
-
-
Save leosuncin/39790f00593bbb6ae969a615f0ebad46 to your computer and use it in GitHub Desktop.
Esquemas laboratorios BAD115-2017
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- this is an example | |
group: BAD115-Laboratorio1 | |
R1 = { | |
A:string, B:string, C:string, D:string | |
'α','α','1','7' | |
'α','ß','5','7' | |
'ß','ß','12','3' | |
'ß','ß','23','10' | |
} | |
R2 = { | |
A:string, B:string, C:string | |
'α','10','1' | |
'α','20','1' | |
'ß','30','1' | |
'ß','40','2' | |
} | |
R3 = { | |
A:string, B:string | |
'α','1' | |
'α','2' | |
'ß','1' | |
} | |
R4 = { | |
A:string, B:string | |
'α','1' | |
'ß','2' | |
} | |
R5 = { | |
A:string, B:string, C:string, D:string | |
'α','1','α','a' | |
'ß','2','y','a' | |
'y','4','ß','b' | |
'α','1','y','a' | |
'δ','2','ß','b' | |
} | |
S3 = { | |
A:string, B:string | |
'α','2' | |
'ß','3' | |
} | |
S4 = { | |
C:string, D:string, E:string | |
'α','10','a' | |
'ß','10','a' | |
'ß','20','b' | |
'y','10','b' | |
} | |
S5 = { | |
B:string, D:string, E:string | |
'1','a','α' | |
'3','a','ß' | |
'1','a','y' | |
'2','b','δ' | |
'3','b','ξ' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment