资源简介
概念格的各种生成工具,inclose2,openfca,Galicia3
代码片段和文件信息
/*
* Created on 31 janv. 2005
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code style - Code Templates
*/
package galicia;
import java.io.File;
import galicia.core.Kernel;
import galicia.ui.scriptingAlgoLauncher;
import galicia.ui.miniGui.miniGui;
/**
* @author roume
*
* This class is the stating point of Galicia it takes parametr and start the accurate mode.
* Acutally only the specific miniGUI mode is availlable but without any option we can start
* the kernel and se it through to the API UserSession.
*/
public class Start {
/**
*
* @param args contains the stating option kernel.
*/
public static void main(String[] args) {
//System.out.println(System.getProperty(“user.dir“));
Kernel.startKernel();
if(args==null || args.length==0 || (args.length==1 && args[0].equals(“-miniGUI“))) {
miniGui.start();
}
if(args!=null && args.length==2 && args[0].equals(“-script“)) {
File scriptFile=new File(args[1]);
if(!scriptFile.exists()){
System.out.println(“scripting file does not exist !“);
System.exit(1);
}
scriptingAlgoLauncher launcher=new scriptingAlgoLauncher(scriptFile);
Thread theThread=new Thread(launcher);
theThread.start();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 141 2014-11-24 14:07 In-Close2\aa.cxt
文件 10048 2014-07-07 14:38 In-Close2\abc.xlsx
文件 167 2014-07-11 16:01 In-Close2\b1.cxt
文件 167 2014-07-11 16:07 In-Close2\b2.cxt
文件 141 2014-11-24 14:09 In-Close2\bb.cxt
文件 10174 2015-09-07 09:00 In-Close2\bridgecae.cxt
文件 56113 2015-08-11 23:01 In-Close2\car.cxt
文件 11204008 2014-07-09 17:50 In-Close2\conceptofmushroom.xlsx
文件 141 2015-01-04 10:13 In-Close2\context.cxt
文件 222 2013-03-19 09:03 In-Close2\ebikecxt.cxt
文件 169 2013-03-30 09:28 In-Close2\FCA.cxt
文件 88 2013-03-29 15:10 In-Close2\I.cxt
文件 338914 2013-03-23 08:38 In-Close2\In-Close a fast algorithm for computing formal concepts.pdf
文件 13 2014-07-09 16:16 In-Close2\In-Close2\context.cxt
文件 226012 2013-03-29 15:01 In-Close2\In-Close2\Debug\aa.pch
文件 226012 2014-07-09 15:11 In-Close2\In-Close2\Debug\Cpp2.pch
文件 3245 2013-03-30 10:57 In-Close2\In-Close2\Debug\duru.obj
文件 679998 2014-07-09 16:19 In-Close2\In-Close2\Debug\InClose.exe
文件 2754300 2014-07-09 16:19 In-Close2\In-Close2\Debug\InClose.ilk
文件 407786 2014-07-09 16:19 In-Close2\In-Close2\Debug\InClose.obj
文件 5442988 2014-07-09 15:28 In-Close2\In-Close2\Debug\InClose.pch
文件 1180672 2014-07-09 16:19 In-Close2\In-Close2\Debug\InClose.pdb
文件 2983 2014-07-09 15:22 In-Close2\In-Close2\Debug\jishi.obj
文件 205824 2014-07-09 16:19 In-Close2\In-Close2\Debug\vc60.idb
文件 143360 2014-07-09 16:19 In-Close2\In-Close2\Debug\vc60.pdb
文件 30002 2014-07-14 21:59 In-Close2\In-Close2\InClose.cpp
文件 174 2013-03-31 13:07 In-Close2\In-Close2\InClose.dep
文件 32693 2014-07-15 11:55 In-Close2\In-Close2\INclose.docx
文件 3413 2014-07-09 16:21 In-Close2\In-Close2\InClose.dsp
文件 522 2014-07-09 16:21 In-Close2\In-Close2\InClose.dsw
............此处省略1513个文件信息
- 上一篇:无线传输传感器数据采集
- 下一篇:二维码定位符识别带
评论
共有 条评论