mirror of
https://github.com/arcan1s/moldyn.git
synced 2025-07-13 22:05:50 +00:00
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
/*
|
|
* ----------------------------------------------------------------------------
|
|
* "THE BEER-WARE LICENSE" (Revision 42):
|
|
* Evgeniy Alekseev wrote this file. As long as you retain this notice you
|
|
* can do whatever you want with this stuff. If we meet some day, and you think
|
|
* this stuff is worth it, you can buy me a beer in return
|
|
* ----------------------------------------------------------------------------
|
|
*/
|
|
/**
|
|
* @file main.c
|
|
* Source code of mathmech library
|
|
* @author Evgeniy Alekseev (arcanis)
|
|
* @copyright Beerware
|
|
* @bug No known bugs
|
|
*/
|
|
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <mathmech/atom_types.h>
|
|
#include <mathmech/coords.h>
|
|
#include <mathmech/envir_search.h>
|
|
#include <mathmech/graph.h>
|
|
#include <mathmech/messages.h>
|
|
#include <mathmech/print_struct.h>
|
|
#include <mathmech/print_trj.h>
|
|
#include <mathmech/radf.h>
|
|
#include <mathmech/radf_proc.h>
|
|
#include <mathmech/read_agl.h>
|
|
#include <mathmech/read_gmx.h>
|
|
#include <mathmech/read_puma.h>
|
|
#include <mathmech/select_mol.h>
|
|
#include <mathmech/set_center.h>
|
|
#include <mathmech/stat_print.h>
|
|
#include <mathmech/stat_select.h>
|
|
#include <mathmech/stat_sort.h>
|
|
#include <mathmech/summary_stat.h>
|
|
#include <mathmech/var_types.h>
|
|
|
|
|
|
/**
|
|
* @fn main
|
|
*/
|
|
int main(int argc, char *argv[])
|
|
/**
|
|
* @return 0 - exit without errors
|
|
*/
|
|
{
|
|
return 0;
|
|
}
|