Software: Apache. PHP/5.4.45 

uname -a: Linux webm056.cluster010.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue
Sep 17 08:14:20 UTC 2024 x86_64
 

uid=243112(mycochar) gid=100(users) groups=100(users)  

Safe-mode: OFF (not secure)

/home/mycochar/www/image/photo/gcc-12.3.0/isl-0.24/   drwxr-xr-x
Free 0 B of 0 B (0%)
Your ip: 216.73.216.77 - Server ip: 213.186.33.19
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    

[Enumerate]    [Encoder]    [Tools]    [Proc.]    [FTP Brute]    [Sec.]    [SQL]    [PHP-Code]    [Backdoor Host]    [Back-Connection]    [milw0rm it!]    [PHP-Proxy]    [Self remove]
    


Viewing file:     polyhedron_minimize.c (2.41 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 * Copyright 2008-2009 Katholieke Universiteit Leuven
 *
 * Use of this software is governed by the MIT license
 *
 * Written by Sven Verdoolaege, K.U.Leuven, Departement
 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
 */

#include <assert.h>
#include <isl/set.h>
#include <isl/vec.h>
#include <isl_ilp_private.h>
#include <isl_seq.h>
#include <isl_vec_private.h>

/* The input of this program is the same as that of the "polytope_minimize"
 * program from the barvinok distribution.
 *
 * Constraints of set is PolyLib format.
 * Linear or affine objective function in PolyLib format.
 */

static __isl_give isl_vec *isl_vec_lin_to_aff(__isl_take isl_vec *vec)
{
    struct isl_vec *aff;

    if (!vec)
        return NULL;
    aff = isl_vec_alloc(vec->ctx, 1 + vec->size);
    if (!aff)
        goto error;
    isl_int_set_si(aff->el[0], 0);
    isl_seq_cpy(aff->el + 1, vec->el, vec->size);
    isl_vec_free(vec);
    return aff;
error:
    isl_vec_free(vec);
    return NULL;
}

/* Rotate elements of vector right.
 * In particular, move the constant term from the end of the
 * vector to the start of the vector.
 */
static __isl_give isl_vec *vec_ror(__isl_take isl_vec *vec)
{
    int i;

    if (!vec)
        return NULL;
    for (i = vec->size - 2; i >= 0; --i)
        isl_int_swap(vec->el[i], vec->el[i + 1]);
    return vec;
}

int main(int argc, char **argv)
{
    struct isl_ctx *ctx = isl_ctx_alloc();
    struct isl_basic_set *bset;
    struct isl_vec *obj;
    struct isl_vec *sol;
    isl_int opt;
    isl_size dim;
    enum isl_lp_result res;
    isl_printer *p;

    isl_int_init(opt);
    bset = isl_basic_set_read_from_file(ctx, stdin);
    dim = isl_basic_set_dim(bset, isl_dim_all);
    assert(dim >= 0);
    obj = isl_vec_read_from_file(ctx, stdin);
    assert(obj);
    assert(obj->size >= dim && obj->size <= dim + 1);
    if (obj->size != dim + 1)
        obj = isl_vec_lin_to_aff(obj);
    else
        obj = vec_ror(obj);
    res = isl_basic_set_solve_ilp(bset, 0, obj->el, &opt, &sol);
    switch (res) {
    case isl_lp_error:
        fprintf(stderr, "error\n");
        return -1;
    case isl_lp_empty:
        fprintf(stdout, "empty\n");
        break;
    case isl_lp_unbounded:
        fprintf(stdout, "unbounded\n");
        break;
    case isl_lp_ok:
        p = isl_printer_to_file(ctx, stdout);
        p = isl_printer_print_vec(p, sol);
        p = isl_printer_end_line(p);
        p = isl_printer_print_isl_int(p, opt);
        p = isl_printer_end_line(p);
        isl_printer_free(p);
    }
    isl_basic_set_free(bset);
    isl_vec_free(obj);
    isl_vec_free(sol);
    isl_ctx_free(ctx);
    isl_int_clear(opt);

    return 0;
}

Enter:
 
Select:
 

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

Search
  - regexp 

Upload
 
[ ok ]

Make Dir
 
[ ok ]
Make File
 
[ ok ]

Go Dir
 
Go File
 

--[ x2300 Locus7Shell v. 1.0a beta Modded by #!physx^ | www.LOCUS7S.com | Generation time: 0.0061 ]--