Package operators

Examples of operators.MULTIMIN$Projection


        FilteredFolksonomy ff = cf.doRTFiltering(c, main_resource_id);
        cf = null;
        r.gc();
        System.out.println(ff.toString());
        try{
            GroundProgram gp6 = sb.makeGroundProgram(ff, new MULTIMIN(), new FPROD(), new FPROD());
            ConsequenceOp imcons6 = new ConsequenceOp(gp6);
            FaspInterpretation model6 = imcons6.computeLFP(main_resource_id+"_MULTIMIN_FPROD_FPROD");
            GroundProgram gp5 = sb.makeGroundProgram(ff, new MULTIMIN(), new TW(), new TW());
            ConsequenceOp imcons5 = new ConsequenceOp(gp5);
            FaspInterpretation model5 = imcons5.computeLFP(main_resource_id+"_MULTIMIN_TW_TW");
            GroundProgram gp1 = sb.makeGroundProgram(ff, new MULTIMIN(), new FPROD(), new FPROD());
            ConsequenceOp imcons1 = new ConsequenceOp(gp1);
            FaspInterpretation model1 = imcons1.computeLFP(main_resource_id+"_MULTIMIN_FPROD_TW");
            GroundProgram gp = sb.makeGroundProgram(ff, new WSUM(), new TW(), new FPROD());
            ConsequenceOp imcons = new ConsequenceOp(gp);
            FaspInterpretation model = imcons.computeLFP(main_resource_id+"_WSUM_TW_FPROD");
            GroundProgram gp2 = sb.makeGroundProgram(ff, new MULTIMIN(), new TW(), new FPROD());
            ConsequenceOp imcons2 = new ConsequenceOp(gp2);
            FaspInterpretation model2 = imcons2.computeLFP(main_resource_id+"_MULTIMIN_TW_FPROD");
            GroundProgram gp3 = sb.makeGroundProgram(ff, new WSUM(), new FPROD(), new TW());
            ConsequenceOp imcons3 = new ConsequenceOp(gp3);
            FaspInterpretation model3 = imcons3.computeLFP(main_resource_id+"_WSUM_FPROD_TW");
            GroundProgram gp4 = sb.makeGroundProgram(ff, new MULTIMIN(), new FPROD(), new TW());
            ConsequenceOp imcons4 = new ConsequenceOp(gp4);
            FaspInterpretation model4 = imcons4.computeLFP(main_resource_id+"_MULTIMIN_FPROD_TW");
        }catch(UnsupportedItemException ex){
            System.err.println(ex);
        }
View Full Code Here


*/
public class Tester {

    public static void main(String[] args){

        MultiOperator op1 = new MULTIMIN();
        MultiOperator op2 = new FPROD();
        MultiOperator op3 = new TM();


        String r1 = "1";
View Full Code Here

                fos1 = new FileOutputStream("gp1"+ff.getMain()+"_"+ff.getResources().size()+".ser");
                out1 = new ObjectOutputStream(fos1);
                out1.writeObject(gp1);
                out1.close();
                r.gc();
                GroundProgram gp2 = sb.makeGroundProgram(ff, new MULTIMIN(), new TW(), new FPROD());
                fos2 = new FileOutputStream("gp2"+ff.getMain()+"_"+ff.getResources().size()+".ser");
                out2 = new ObjectOutputStream(fos2);
                out2.writeObject(gp2);
                out2.close();
                r.gc();
                GroundProgram gp3 = sb.makeGroundProgram(ff, new WSUM(), new FPROD(), new TW());
                fos3 = new FileOutputStream("gp3"+ff.getMain()+"_"+ff.getResources().size()+".ser");
                out3 = new ObjectOutputStream(fos3);
                out3.writeObject(gp3);
                out3.close();
                r.gc();
                GroundProgram gp4 = sb.makeGroundProgram(ff, new MULTIMIN(), new FPROD(), new TW());
                fos4 = new FileOutputStream("gp4"+ff.getMain()+"_"+ff.getResources().size()+".ser");
                out4 = new ObjectOutputStream(fos4);
                out4.writeObject(gp4);
                out4.close();
                r.gc();
                GroundProgram gp5 = sb.makeGroundProgram(ff, new MULTIMIN(), new TW(), new TW());
                fos5 = new FileOutputStream("gp5"+ff.getMain()+"_"+ff.getResources().size()+".ser");
                out5 = new ObjectOutputStream(fos5);
                out5.writeObject(gp5);
                out5.close();
                r.gc();
                GroundProgram gp6 = sb.makeGroundProgram(ff, new MULTIMIN(), new FPROD(), new FPROD());
                fos6 = new FileOutputStream("gp6"+ff.getMain()+"_"+ff.getResources().size()+".ser");
                out6 = new ObjectOutputStream(fos6);
                out6.writeObject(gp6);
                out6.close();
            }catch(IOException ex){
View Full Code Here

TOP

Related Classes of operators.MULTIMIN$Projection

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.