TwojePC.pl © 2001 - 2024
|
|
A R C H I W A L N A W I A D O M O Ś Ć |
|
|
|
CASPIAN (Case-Based Reasoning) - czy ktoś miał do czynienia? , turzol 23/01/05 18:40 Dostałem dziś (sic) mailem info, że na jutro mam zrobić projekt w tym programie :-O Nie dość, że na ćwiczeniach była o tym programie cisza to teraz takie cyrki koleś odstawia.
Jedyne co wiem o nim to, że przeznaczony jest to analizy CBR.
Czy ktoś miał styczność z programami tego typu?trance addicted
:B ::KX:: ::ASIO Otachan:: - ok :) , turzol 23/01/05 20:31
już się w tym łapie. Podobna składnia jak w Sphinx-ie.
Dam radę ;] Za godzine będzie gotowetrance addicted
:B ::KX:: ::ASIO Otachan:: - done ;] , turzol 24/01/05 02:32
introduction is
'\t\t\tKarty Graficzne',
'\t\t\t\n',
'\tBaza wiedzy dotyczy',
'\tklasyfikacji wspolczesnych kart graficznych.',
'\tARTUR TURZYNIECKI gr20'
end;
case definition is
field producent_ukladu type is (ATI, nVidia)
weight is 0
prompt is ['Wybierz producenta karty graficznej'];
field typ_zlacza type is (AGP, PCIe)
weight is 0
prompt is ['Wybierz typ zlacza'];
field firma type is (ASUS, MSI, Gigabyte, Club3D, Sapphire)
weight is 0
prompt is ['Wybierz firme'];
field wartosc type is number
weight is 0
prompt is ['Jaki przedzial cenowy'];
field przedzial type is number
weight is 7
prompt is ['Wpisz 1.'];
end;
index definition is
index on producent_ukladu;
end;
modification definition is
field wartosc similar range 0 to 300;
field wartosc similar range 300 to 500;
field wartosc similar range 500 to 700;
field wartosc similar range 700 to 1000;
field wartosc similar range 1000 to 2000;
end;
preprocess rule definition is
repair rule przyp_przedz_1 is
when
wartosc > 0 and wartosc < 300
then
evaluate przedzial to 2;
end;
repair rule przyp_przedz_2 is
when
wartosc > 300 and wartosc < 500
then
evaluate przedzial to 3;
end;
repair rule przyp_przedz_3 is
when
wartosc > 500 and wartosc < 700
then
evaluate przedzial to 4;
end;
repair rule przyp_przedz_4 is
when
wartosc > 700 and wartosc < 1000
then
evaluate przedzial to 5;
end;
repair rule przyp_przedz_5 is
when
wartosc > 1000 and wartosc < 2000
then
evaluate przedzial to 6;
end;
repair rule przyp_przedz_6 is
when
wartosc > 2000
then
evaluate przedzial to 7;
end;
end;
case instance Wynik_001 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 2;
solution is
wynik = [ ASUS Radeon A9200SE ];
end;
case instance Wynik_002 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = MSI;
przedzial = 2;
solution is
wynik = [ MSI RX9250T64 Radeon 9250 ];
end;
case instance Wynik_003 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 2;
solution is
wynik = [ Gigabyte Radeon 9200SE ];
end;
case instance Wynik_004 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 2;
solution is
wynik = [ Club3D Radeon 7000 ];
end;
case instance Wynik_005 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 2;
solution is
wynik = [ Sapphire Atlantis Radeon 9200SE ];
end;
case instance Wynik_006 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 3;
solution is
wynik = [ ASUS A9600PROTD Radeon 9600 Pro ];
end;
case instance Wynik_007 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = MSI;
przedzial = 3;
solution is
wynik = [ MSI RX9550SETD128 Radeon 9550SE ];
end;
case instance Wynik_008 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 3;
solution is
wynik = [ Gigabyte Radeon 9550 ];
end;
case instance Wynik_009 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 3;
solution is
wynik = [ Club3D Radeon 9000 Pro ];
end;
case instance Wynik_010 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 3;
solution is
wynik = [ Sapphire Atlantis Radeon 9200 ];
end;
case instance Wynik_011 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 4;
solution is
wynik = [ ASUS A9600 XTTD Radeon 9600 XT ];
end;
case instance Wynik_012 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = MSI;
przedzial = 4;
solution is
wynik = [ MSI RX9600LET128 Radeon 9600LE ];
end;
case instance Wynik_013 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 4;
solution is
wynik = [ Gigabyte Radeon 9600 Pro ];
end;
case instance Wynik_014 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 4;
solution is
wynik = [ Club3D Radeon 9600 Pro ];
end;
case instance Wynik_015 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 4;
solution is
wynik = [ Sapphire Atlantis Radeon 9550 ];
end;
case instance Wynik_016 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 5;
solution is
wynik = [ ASUS A9800 Radeon 9800 ];
end;
case instance Wynik_017 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = MSI;
przedzial = 5;
solution is
wynik = [ MSI RX9600XTTD128 Radeon 9600 XT ];
end;
case instance Wynik_018 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 5;
solution is
wynik = [ Gigabyte Radeon 9800 Pro ];
end;
case instance Wynik_019 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 5;
solution is
wynik = [ Club3D Radeon 9600 XT ];
end;
case instance Wynik_020 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 5;
solution is
wynik = [ Sapphire Atlantis Radeon 9600 XT Fireblade Edition ];
end;
case instance Wynik_021 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 6;
solution is
wynik = [ ASUS A9800 ProTVD256 Radeon 9800 Pro ];
end;
case instance Wynik_022 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = MSI;
przedzial = 6;
solution is
wynik = [ MSI RX9800PROTD128 Radeon 9800 Pro ];
end;
case instance Wynik_023 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 6;
solution is
wynik = [ Gigabyte Radeon X800 Pro ];
end;
case instance Wynik_024 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 6;
solution is
wynik = [ Club3D Radeon X800 Pro ];
end;
case instance Wynik_025 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 6;
solution is
wynik = [ Sapphire Atlantis Radeon 9800 Pro ];
end;
case instance Wynik_026 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 7;
solution is
wynik = [ ASUS A9800 XTTVD256 Radeon 9800 XT ];
end;
case instance Wynik_027 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = MSI;
przedzial = 7;
solution is
wynik = [ MSI RX800PROVTD256 Radeon X800 Pro ];
end;
case instance Wynik_028 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 7;
solution is
wynik = [ Gigabyte Radeon X800 XT Platinum ];
end;
case instance Wynik_029 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 7;
solution is
wynik = [ Club3D AllInWonder Radeon X800 XT ];
end;
case instance Wynik_030 is
producent_ukladu = ATI;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 7;
solution is
wynik = [ Sapphire Radeon X800 XT Platinum ];
end;
case instance Wynik_101 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 2;
solution is
wynik = [ ASUS AGPV9180SE GeForce4 MX440SE ];
end;
case instance Wynik_102 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = MSI;
przedzial = 2;
solution is
wynik = [ MSI MS8890 GF4MX440T8X ];
end;
case instance Wynik_103 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 2;
solution is
wynik = [ Gigabyte Pro620 GeForce4 MX4000 ];
end;
case instance Wynik_104 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 2;
solution is
wynik = [ Club3D GeForce MX4000 ];
end;
case instance Wynik_105 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 2;
solution is
wynik = [ Sapphire GeForce MX440SE ];
end;
case instance Wynik_106 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 3;
solution is
wynik = [ ASUS AGPV9520XTD GeForce 5200 ];
end;
case instance Wynik_107 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = MSI;
przedzial = 3;
solution is
wynik = [ MSI FX5200TD64 GeForceFX 5200 ];
end;
case instance Wynik_108 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 3;
solution is
wynik = [ Gigabyte 3D Blaster5 FX5600 Ultra ];
end;
case instance Wynik_109 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 3;
solution is
wynik = [ Club3D GeForceFX 5200LE ];
end;
case instance Wynik_110 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 3;
solution is
wynik = [ Sapphire GeForceFX 5200 ];
end;
case instance Wynik_111 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 4;
solution is
wynik = [ ASUS AGPV8440DVI GeForce4 Ti4400 ];
end;
case instance Wynik_112 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = MSI;
przedzial = 4;
solution is
wynik = [ MSI FX5700LETD128 GeForceFX 5700 ];
end;
case instance Wynik_113 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 4;
solution is
wynik = [ Gigabyte GVN59X128D GeForceFX 5900XT ];
end;
case instance Wynik_114 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 4;
solution is
wynik = [ Club3D GeForceFX 5700LE ];
end;
case instance Wynik_115 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 4;
solution is
wynik = [ Sapphire GeForceFX 5900 ];
end;
case instance Wynik_116 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 5;
solution is
wynik = [ ASUS AGPV9570TD GeForceFX 5700 ];
end;
case instance Wynik_117 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = MSI;
przedzial = 5;
solution is
wynik = [ MSI FX5900VTD128 GeForceFX 5900 ];
end;
case instance Wynik_118 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 5;
solution is
wynik = [ Gigabyte GeForce 6600 GT 128MB ];
end;
case instance Wynik_119 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 5;
solution is
wynik = [ Club3D GeForce 6800 GT 128MB ];
end;
case instance Wynik_120 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 5;
solution is
wynik = [ Sapphire GeForce 6800 GT 128MB ];
end;
case instance Wynik_121 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 6;
solution is
wynik = [ ASUS AGPV9999GTTD128 GeForce 6800 GT ];
end;
case instance Wynik_122 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = MSI;
przedzial = 6;
solution is
wynik = [ MSI NX6800GTTD256 GeForce 6800 GT ];
end;
case instance Wynik_123 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 6;
solution is
wynik = [ Gigabyte GVN68T256DH GeForce 6800 GT ];
end;
case instance Wynik_124 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 6;
solution is
wynik = [ Club3D GeForce 6800 GT 256MB ];
end;
case instance Wynik_125 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 6;
solution is
wynik = [ Sapphire GeForce 6800 GT 256MB ];
end;
case instance Wynik_126 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = ASUS;
przedzial = 7;
solution is
wynik = [ ASUS AGPV9999ULTRA Deluxe GeForce 6800 Ultra ];
end;
case instance Wynik_127 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = MSI;
przedzial = 7;
solution is
wynik = [ MSI NX6800 UltraT2D256 GeForce 6800 Ultra ];
end;
case instance Wynik_128 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Gigabyte;
przedzial = 7;
solution is
wynik = [ Gigabyte GVN68U256D GeForce 6800 Ultra ];
end;
case instance Wynik_129 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Club3D;
przedzial = 7;
solution is
wynik = [ Club3D GeForce 6800 Ultra ];
end;
case instance Wynik_130 is
producent_ukladu = nVidia;
typ_zlacza = AGP;
firma = Sapphire;
przedzial = 7;
solution is
wynik = [ Sapphire GeForce 6800 Ultra ];
end;
case instance Wynik_201 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 2;
solution is
wynik = [ ASUS Extreme AX300SET Radeon X300SE ];
end;
case instance Wynik_202 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 2;
solution is
wynik = [ MSI RX300TD128E Radeon X300 ];
end;
case instance Wynik_203 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 2;
solution is
wynik = [ Gigabyte GVRX30P128D Radeon X300 ];
end;
case instance Wynik_204 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 2;
solution is
wynik = [ Club3D Radeon 9200SE9250SE ];
end;
case instance Wynik_205 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 2;
solution is
wynik = [ Sapphire Radeon X300 Low Profile ];
end;
case instance Wynik_206 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 3;
solution is
wynik = [ ASUS Extreme AX600XTHDTV Radeon X600XT ];
end;
case instance Wynik_207 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 3;
solution is
wynik = [ MSI RX600PROTD128E Radeon X600 Pro ];
end;
case instance Wynik_208 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 3;
solution is
wynik = [ Gigabyte GVRX60P128D Radeon X600 Pro ];
end;
case instance Wynik_209 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 3;
solution is
wynik = [ Club3D Radeon X300 ];
end;
case instance Wynik_210 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 3;
solution is
wynik = [ Sapphire Radeon X600 Pro ];
end;
case instance Wynik_211 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 4;
solution is
wynik = [ ASUS Extreme AX700PROTVD Radeon X700PRO ];
end;
case instance Wynik_212 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 4;
solution is
wynik = [ MSI RX600XTVTD128E Radeon X600 XT ];
end;
case instance Wynik_213 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 4;
solution is
wynik = [ Gigabyte Radeon X700 Pro 128MB ];
end;
case instance Wynik_214 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 4;
solution is
wynik = [ Club3D Radeon X600 Pro ];
end;
case instance Wynik_215 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 4;
solution is
wynik = [ Sapphire Radeon X600 XT ];
end;
case instance Wynik_216 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 5;
solution is
wynik = [ ASUS Extreme AX800Pro2DT Radeon X800 Pro ];
end;
case instance Wynik_217 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 5;
solution is
wynik = [ MSI RX700PROTD128 Radeon X700 Pro ];
end;
case instance Wynik_218 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 5;
solution is
wynik = [ Gigabyte Radeon X700 Pro 256MB ];
end;
case instance Wynik_219 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 5;
solution is
wynik = [ Club3D Radeon X600 XT ];
end;
case instance Wynik_220 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 5;
solution is
wynik = [ Sapphire Radeon X700 Pro ];
end;
case instance Wynik_221 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 6;
solution is
wynik = [ ASUS Extreme AX800Pro2DTV Radeon X800 Pro ];
end;
case instance Wynik_222 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 6;
solution is
wynik = [ MSI RX800TD128E Radeon X800 Pro ];
end;
case instance Wynik_223 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 6;
solution is
wynik = [ Gigabyte Radeon X800XL ];
end;
case instance Wynik_224 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 6;
solution is
wynik = [ Club3D Radeon X800 XL ];
end;
case instance Wynik_225 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 6;
solution is
wynik = [ Sapphire Radeon X800 XL ];
end;
case instance Wynik_226 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 7;
solution is
wynik = [ ASUS Extreme AX800XT2DT Radeon X800 XT ];
end;
case instance Wynik_227 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 7;
solution is
wynik = [ MSI RX800XTVTD256E Radeon X800 XT ];
end;
case instance Wynik_228 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 7;
solution is
wynik = [ Gigabyte Radeon X800XT ];
end;
case instance Wynik_229 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 7;
solution is
wynik = [ Club3D Radeon X800 XT Platinum ];
end;
case instance Wynik_230 is
producent_ukladu = ATI;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 7;
solution is
wynik = [ Sapphire Radeon X850 XT Platinum ];
end;
case instance Wynik_301 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 2;
solution is
wynik = [ ASUS Extreme N6200GETD GeForce 6200 ];
end;
case instance Wynik_302 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 2;
solution is
wynik = [ MSI NX6200TCTD64E GeForce 6200 TC ];
end;
case instance Wynik_303 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 2;
solution is
wynik = [ Gigabyte GeForce 6600 ];
end;
case instance Wynik_304 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 2;
solution is
wynik = [ Club3D GeForce 6200 64Bit ];
end;
case instance Wynik_305 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 2;
solution is
wynik = [ Sapphire SPPX4XDH GeForce 6200 ];
end;
case instance Wynik_306 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 3;
solution is
wynik = [ ASUS Extreme N6600TD GeForce 6600 128MB ];
end;
case instance Wynik_307 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 3;
solution is
wynik = [ MSI NX6200TD128E GeForce 6200 ];
end;
case instance Wynik_308 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 3;
solution is
wynik = [ Gigabyte GVNX59128D GeForceFX 5900 ];
end;
case instance Wynik_309 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 3;
solution is
wynik = [ Club3D GeForce 6200 128Bit ];
end;
case instance Wynik_310 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 3;
solution is
wynik = [ Sapphire Aeolus 6200DV256 GeForce 6200 ];
end;
case instance Wynik_311 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 4;
solution is
wynik = [ ASUS Extreme N6600GTTD GeForce 6600 GT ];
end;
case instance Wynik_312 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 4;
solution is
wynik = [ MSI NX6600VTD128E Diamond GeForce 6600 ];
end;
case instance Wynik_313 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 4;
solution is
wynik = [ Gigabyte GVNX59128DXT GeForceFX 5900XT ];
end;
case instance Wynik_314 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 4;
solution is
wynik = [ Club3D GeForce 6600 64Bit ];
end;
case instance Wynik_315 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 4;
solution is
wynik = [ Sapphire GeForce 6600 ];
end;
case instance Wynik_316 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 5;
solution is
wynik = [ ASUS Extreme N6600TD GeForce 6600 256MB ];
end;
case instance Wynik_317 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 5;
solution is
wynik = [ MSI NX6600GTTD128E GeForce 6600 GT ];
end;
case instance Wynik_318 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 5;
solution is
wynik = [ Gigabyte GeForce 6600 256MB DDR ];
end;
case instance Wynik_319 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 5;
solution is
wynik = [ Club3D GeForce 6600 GT ];
end;
case instance Wynik_320 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 5;
solution is
wynik = [ Sapphire GeForce 6800 GTx 128MB ];
end;
case instance Wynik_321 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 6;
solution is
wynik = [ ASUS Extreme N6800GTTD GeForce 6800GT ];
end;
case instance Wynik_322 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 6;
solution is
wynik = [ MSI NX6800TD256E GeForce 6800 ];
end;
case instance Wynik_323 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 6;
solution is
wynik = [ Gigabyte GVN68T256DX GeForce 6800 GT ];
end;
case instance Wynik_324 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 6;
solution is
wynik = [ Club3D GeForce 6800 ];
end;
case instance Wynik_325 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 6;
solution is
wynik = [ Sapphire GeForce 6800 GTx 256MB ];
end;
case instance Wynik_326 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = ASUS;
przedzial = 7;
solution is
wynik = [ ASUS Extreme N6800ULTRATD GeForce 6800ULTRA ];
end;
case instance Wynik_327 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = MSI;
przedzial = 7;
solution is
wynik = [ MSI NX6800GTT2D256E GeForce 6800 GT ];
end;
case instance Wynik_328 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Gigabyte;
przedzial = 7;
solution is
wynik = [ Gigabyte GVN68U256DX GeForce 6800 Ultra ];
end;
case instance Wynik_329 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Club3D;
przedzial = 7;
solution is
wynik = [ Club3D GeForce 6800 Ultra ];
end;
case instance Wynik_330 is
producent_ukladu = nVidia;
typ_zlacza = PCIe;
firma = Sapphire;
przedzial = 7;
solution is
wynik = [ Sapphire GeForce 6800 Ultrax ];
end;trance addicted
:B ::KX:: ::ASIO Otachan:: |
|
|
|
|
All rights reserved ® Copyright and Design 2001-2024, TwojePC.PL |
|
|
|
|