├── .gitattributes ├── .gitignore ├── Alicia ├── Alicia.pm ├── LICENSE ├── NOTES.md ├── README.md ├── cpanfile ├── docs ├── Alicia.md ├── INSTALL.md ├── USE.md ├── doc.sh ├── libAlicia.md ├── libdoc.pl └── perf.md ├── examples ├── glob.asql ├── hello.asql ├── peak_nos.csv ├── sales.csv ├── sales.linux.csv ├── sales.medium.csv ├── sales_csv_options.asql ├── sales_etl.asql ├── test_corr.sql └── test_csv.csv ├── img ├── peak.png └── sp500.png ├── libAlicia.c ├── perf_tests ├── peak.data.lg ├── peak.data.med ├── peak.data.small ├── peak.gen.pl ├── peak.hg.sql ├── peak.lg.sql ├── peak.pl ├── peak.sql ├── peak.vlg.sql ├── peaks.data.hg ├── peaks.data.vlg ├── seq.tbl ├── sp.data.hg ├── sp.pl ├── sp.sql ├── sp2.sql ├── sp3.sql ├── sp4.sql ├── sp500.csv ├── sp500.hlf.csv └── sp500.sm.csv └── test ├── lib_test.pl └── test.pl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/.gitignore -------------------------------------------------------------------------------- /Alicia: -------------------------------------------------------------------------------- 1 | Alicia.pm -------------------------------------------------------------------------------- /Alicia.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/Alicia.pm -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/README.md -------------------------------------------------------------------------------- /cpanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/cpanfile -------------------------------------------------------------------------------- /docs/Alicia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/Alicia.md -------------------------------------------------------------------------------- /docs/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/INSTALL.md -------------------------------------------------------------------------------- /docs/USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/USE.md -------------------------------------------------------------------------------- /docs/doc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/doc.sh -------------------------------------------------------------------------------- /docs/libAlicia.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/libAlicia.md -------------------------------------------------------------------------------- /docs/libdoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/libdoc.pl -------------------------------------------------------------------------------- /docs/perf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/docs/perf.md -------------------------------------------------------------------------------- /examples/glob.asql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/glob.asql -------------------------------------------------------------------------------- /examples/hello.asql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/hello.asql -------------------------------------------------------------------------------- /examples/peak_nos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/peak_nos.csv -------------------------------------------------------------------------------- /examples/sales.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/sales.csv -------------------------------------------------------------------------------- /examples/sales.linux.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/sales.linux.csv -------------------------------------------------------------------------------- /examples/sales.medium.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/sales.medium.csv -------------------------------------------------------------------------------- /examples/sales_csv_options.asql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/sales_csv_options.asql -------------------------------------------------------------------------------- /examples/sales_etl.asql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/sales_etl.asql -------------------------------------------------------------------------------- /examples/test_corr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/test_corr.sql -------------------------------------------------------------------------------- /examples/test_csv.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/examples/test_csv.csv -------------------------------------------------------------------------------- /img/peak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/img/peak.png -------------------------------------------------------------------------------- /img/sp500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/img/sp500.png -------------------------------------------------------------------------------- /libAlicia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/libAlicia.c -------------------------------------------------------------------------------- /perf_tests/peak.data.lg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.data.lg -------------------------------------------------------------------------------- /perf_tests/peak.data.med: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.data.med -------------------------------------------------------------------------------- /perf_tests/peak.data.small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.data.small -------------------------------------------------------------------------------- /perf_tests/peak.gen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.gen.pl -------------------------------------------------------------------------------- /perf_tests/peak.hg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.hg.sql -------------------------------------------------------------------------------- /perf_tests/peak.lg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.lg.sql -------------------------------------------------------------------------------- /perf_tests/peak.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.pl -------------------------------------------------------------------------------- /perf_tests/peak.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.sql -------------------------------------------------------------------------------- /perf_tests/peak.vlg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peak.vlg.sql -------------------------------------------------------------------------------- /perf_tests/peaks.data.hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peaks.data.hg -------------------------------------------------------------------------------- /perf_tests/peaks.data.vlg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/peaks.data.vlg -------------------------------------------------------------------------------- /perf_tests/seq.tbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/seq.tbl -------------------------------------------------------------------------------- /perf_tests/sp.data.hg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp.data.hg -------------------------------------------------------------------------------- /perf_tests/sp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp.pl -------------------------------------------------------------------------------- /perf_tests/sp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp.sql -------------------------------------------------------------------------------- /perf_tests/sp2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp2.sql -------------------------------------------------------------------------------- /perf_tests/sp3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp3.sql -------------------------------------------------------------------------------- /perf_tests/sp4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp4.sql -------------------------------------------------------------------------------- /perf_tests/sp500.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp500.csv -------------------------------------------------------------------------------- /perf_tests/sp500.hlf.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp500.hlf.csv -------------------------------------------------------------------------------- /perf_tests/sp500.sm.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/perf_tests/sp500.sm.csv -------------------------------------------------------------------------------- /test/lib_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/test/lib_test.pl -------------------------------------------------------------------------------- /test/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aadel112/alicia/HEAD/test/test.pl --------------------------------------------------------------------------------