• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# libsbmlcs.ConversionProperties类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中libsbmlcs.ConversionProperties的典型用法代码示例。如果您正苦于以下问题:C# ConversionProperties类的具体用法?C# ConversionProperties怎么用?C# ConversionProperties使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ConversionProperties类属于libsbmlcs命名空间,在下文中一共展示了ConversionProperties类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: Main

        public static void Main(String[] args)
        {
            if (args.Length < 2 || args.Length > 3)
            {
                Console.WriteLine("Usage: FlattenModel [-p] input-filename output-filename");
                Console.WriteLine(" -p : list unused ports");
                Environment.Exit(2);
            }

            SBMLReader reader = new SBMLReader();
            SBMLWriter writer = new SBMLWriter();
            bool leavePorts = false;

            SBMLDocument doc;
            if (args.Length == 2)
            {
                doc = reader.readSBML(args[0]);
            }
            else
            {
                doc = reader.readSBML(args[1]);
                leavePorts = true;
            }

            if (doc.getErrorLog().getNumFailsWithSeverity(libsbml.LIBSBML_SEV_ERROR) > 0)
            {
                doc.printErrors();
            }
            else
            {
                /* create a new conversion properties structure */
                ConversionProperties props = new ConversionProperties();

                /* add an option that we want to flatten */
                props.addOption("flatten comp", true, "flatten comp");

                /* add an option to leave ports if the user has requested this */
                props.addOption("leavePorts", leavePorts, "unused ports should be listed in the flattened model");

                /* perform the conversion */
                int result = doc.convert(props);
                if (result != libsbml.LIBSBML_OPERATION_SUCCESS)
                {
                    Console.WriteLine("conversion failed ... ({0})", result);
                    doc.printErrors();
                    Environment.Exit(3);
                }

                if (args.Length == 2)
                {
                    writer.writeSBML(doc, args[1]);
                }
                else
                {
                    writer.writeSBML(doc, args[2]);
                }
            }
        }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:58,代码来源:FlattenModel.cs


示例2: Main

        public static void Main(string[] args)
        {
            if (args.Length != 2)
              {
            string myname = Path.GetFileName(Environment.GetCommandLineArgs()[0]);
            Console.WriteLine("Usage: {0} input-filename output-filename", myname);
            Environment.Exit(1);
              }

              string inputFile      = args[0];
              string outputFile     = args[1];

              if ( ! File.Exists(inputFile) )
              {
            Console.WriteLine("[Error] {0} : No such file.", inputFile);
            Environment.Exit(1);
              }

              var now = DateTime.Now.Ticks;

              SBMLReader   reader  = new SBMLReader();
              SBMLWriter   writer  = new SBMLWriter();
              SBMLDocument sbmlDoc = reader.readSBML(inputFile);

              if ( sbmlDoc.getErrorLog().getNumFailsWithSeverity(libsbml.LIBSBML_SEV_ERROR) > 0)
              {
            sbmlDoc.printErrors();
            Console.WriteLine("[Error] Cannot read {0}", inputFile);
            Environment.Exit(1);
              }

              Console.WriteLine("Read {0} in {1}", inputFile, new TimeSpan(DateTime.Now.Ticks - now).TotalMilliseconds);

              /* create a new conversion properties structure */
              ConversionProperties props = new ConversionProperties();

              /* add an option that we want to convert a model  with
             L3 FBC to L2 with COBRA annotation */
              props.addOption("convert fbc to cobra", true, "Convert FBC model to Cobra model");

              now = DateTime.Now.Ticks;

              /* perform the conversion */
              int result = sbmlDoc.convert(props);
              if (result != libsbml.LIBSBML_OPERATION_SUCCESS)
              {
              	Console.WriteLine ("conversion failed ... ");
              	Environment.Exit(3);
              }

              writer.writeSBML(sbmlDoc, outputFile);

              Console.WriteLine("[OK] converted to FBC from {0} and wrote to {1}  (in {2} msec)", inputFile, outputFile, new TimeSpan(DateTime.Now.Ticks - now).TotalMilliseconds);
        }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:54,代码来源:convertFbcToCobra.cs


示例3: Main

        public static void Main(string[] args)
        {
            if (args.Length != 3)
              {
            string myname = Path.GetFileName(Environment.GetCommandLineArgs()[0]);
            Console.WriteLine("Usage: {0} input-filename package-to-strip output-filename", myname);
            Environment.Exit(1);
              }

              string inputFile      = args[0];
              string packageToStrip = args[1];
              string outputFile     = args[2];

              if ( ! File.Exists(inputFile) )
              {
            Console.WriteLine("[Error] {0} : No such file.", inputFile);
            Environment.Exit(1);
              }

              SBMLReader   reader  = new SBMLReader();
              SBMLWriter   writer  = new SBMLWriter();
              SBMLDocument sbmlDoc = reader.readSBML(inputFile);

              if ( sbmlDoc.getErrorLog().getNumFailsWithSeverity(libsbml.LIBSBML_SEV_ERROR) > 0)
              {
            sbmlDoc.printErrors();
            Console.WriteLine("[Error] Cannot read {0}", inputFile);
            Environment.Exit(1);
              }

              /* create a new conversion properties structure */
              ConversionProperties props = new ConversionProperties();

              /* add an option that we want to strip a given package */
              props.addOption("stripPackage", true, "Strip SBML Level 3 package constructs from the model");

              /* add an option with the package we want to remove */
              props.addOption("package", packageToStrip, "Name of the SBML Level 3 package to be stripped");

              /* perform the conversion */
              if (sbmlDoc.convert(props) != libsbml.LIBSBML_OPERATION_SUCCESS)
              {
              	Console.WriteLine ("conversion failed ... ");
              	Environment.Exit(3);
              }

              writer.writeSBML(sbmlDoc, outputFile);

              Console.WriteLine("[OK] Stripped package '{0}' from {1} and wrote to {2}", packageToStrip, inputFile, outputFile);
        }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:50,代码来源:stripPackage.cs


示例4: Main

        public static void Main(string[] args)
        {
            if (args.Length != 2)
              {
            string myname = Path.GetFileName(Environment.GetCommandLineArgs()[0]);
            Console.WriteLine("Usage: {0} input-filenameoutput-filename", myname);
            Environment.Exit(1);
              }

              string inputFile      = args[0];
              string outputFile     = args[1];

              if ( ! File.Exists(inputFile) )
              {
            Console.WriteLine("[Error] {0} : No such file.", inputFile);
            Environment.Exit(1);
              }

              SBMLReader   reader  = new SBMLReader();
              SBMLWriter   writer  = new SBMLWriter();
              SBMLDocument sbmlDoc = reader.readSBML(inputFile);

              if ( sbmlDoc.getErrorLog().getNumFailsWithSeverity(libsbml.LIBSBML_SEV_ERROR) > 0)
              {
            sbmlDoc.printErrors();
            Console.WriteLine("[Error] Cannot read {0}", inputFile);
            Environment.Exit(1);
              }

              /* create a new conversion properties structure */
              ConversionProperties props = new ConversionProperties();

              /* add an option that we want to promote parameters */
              props.addOption("promoteLocalParameters", true, "Promotes all Local Parameters to Global ones");

              /* perform the conversion */
              if (sbmlDoc.convert(props) != libsbml.LIBSBML_OPERATION_SUCCESS)
              {
              	Console.WriteLine ("conversion failed ... ");
              	Environment.Exit(3);
              }

              writer.writeSBML(sbmlDoc, outputFile);

              Console.WriteLine("[OK] promoted paramters from {0} and wrote to {1}", inputFile, outputFile);
        }
开发者ID:TotteKarlsson,项目名称:roadrunner,代码行数:46,代码来源:promoteParameters.cs


示例5: getDefaultProperties

 /**
    * Returns the default properties of this converter.
    *
    * A given converter exposes one or more properties that can be adjusted
    * in order to influence the behavior of the converter.  This method
    * returns the @em default property settings for this converter.  It is
    * meant to be called in order to discover all the settings for the
    * converter object.
    *
    * @return the ConversionProperties object describing the default properties
    * for this converter.
    */
 public new ConversionProperties getDefaultProperties()
 {
     ConversionProperties ret = new ConversionProperties(libsbmlPINVOKE.SBMLInitialAssignmentConverter_getDefaultProperties(swigCPtr), true);
     return ret;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:17,代码来源:SBMLInitialAssignmentConverter.cs


示例6: setProperties

 /**
    * Sets the configuration properties to be used by this converter.
    *
    * @param props the ConversionProperties object defining the properties
    * to set.
    *
    * @return integer value indicating the success/failure of the operation.
    * @if clike The value is drawn from the enumeration
    * #OperationReturnValues_t. @endif The set of possible values that may
    * be returned ultimately depends on the specific subclass of
    * SBMLConverter being used, but the default method can return the
    * following values:
    * @li @link libsbml#LIBSBML_OPERATION_SUCCESS [email protected]
    * @li @link libsbml#LIBSBML_OPERATION_FAILED [email protected]
    *
    * @see getProperties()
    * @see matchesProperties(@if java [email protected])
    */
 public virtual int setProperties(ConversionProperties props)
 {
     int ret = (SwigDerivedClassHasMethod("setProperties", swigMethodTypes7) ? libsbmlPINVOKE.SBMLConverter_setPropertiesSwigExplicitSBMLConverter(swigCPtr, ConversionProperties.getCPtr(props)) : libsbmlPINVOKE.SBMLConverter_setProperties(swigCPtr, ConversionProperties.getCPtr(props)));
     return ret;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:23,代码来源:SBMLConverter.cs


示例7: matchesProperties

 /**
    * Returns @c true if this converter matches the given properties.
    *
    * Given a ConversionProperties object @p props, this method checks that @p
    * props possesses an option value to enable this converter.  If it does,
    * this method returns @c true.
    *
    * @param props the properties to match.
    *
    * @return @c true if the properties @p props would match the necessary
    * properties for this type of converter, @c false otherwise.
    */
 public virtual bool matchesProperties(ConversionProperties props)
 {
     bool ret = (SwigDerivedClassHasMethod("matchesProperties", swigMethodTypes5) ? libsbmlPINVOKE.SBMLConverter_matchesPropertiesSwigExplicitSBMLConverter(swigCPtr, ConversionProperties.getCPtr(props)) : libsbmlPINVOKE.SBMLConverter_matchesProperties(swigCPtr, ConversionProperties.getCPtr(props)));
     if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:18,代码来源:SBMLConverter.cs


示例8: getDefaultProperties

 /**
    * Returns the default properties of this converter.
    *
    * A given converter exposes one or more properties that can be adjusted
    * in order to influence the behavior of the converter.  This method
    * returns the @em default property settings for this converter.  It is
    * meant to be called in order to discover all the settings for the
    * converter object.  The run-time properties of the converter object can
    * be adjusted by using the method
    * SBMLConverter::setProperties(ConversionProperties props).
    *
    * @return the default properties for the converter.
    *
    * @see setProperties(@if java Convers[email protected])
    * @see matchesProperties(@if java [email protected])
    */
 public virtual ConversionProperties getDefaultProperties()
 {
     ConversionProperties ret = new ConversionProperties((SwigDerivedClassHasMethod("getDefaultProperties", swigMethodTypes3) ? libsbmlPINVOKE.SBMLConverter_getDefaultPropertiesSwigExplicitSBMLConverter(swigCPtr) : libsbmlPINVOKE.SBMLConverter_getDefaultProperties(swigCPtr)), true);
     return ret;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:21,代码来源:SBMLConverter.cs


示例9: WriteAsCobraAnnotation

        public string WriteAsCobraAnnotation()
        {
            var doc = libsbml.readSBMLFromString(SBML);
              var model = doc.getModel();
              if (doc.getLevel() < 3)
              {
            var properties = new ConversionProperties(new SBMLNamespaces(3, 1));
            properties.addOption("strict", false);
            properties.addOption("setLevelAndVersion", true);
            properties.addOption("ignorePackages", true);
            doc.convert(properties);
              }
              doc.enablePackage(FbcExtension.getXmlnsL3V1V1(), "fbc", true);
              var plugin = (FbcModelPlugin)model.getPlugin("fbc");
              if (plugin == null)
              {

            throw new Exception("Could not save using Fbc. Please check that your model contains no errors!");
              }
              plugin.getListOfFluxBounds().clear();
              plugin.getListOfGeneAssociations().clear();
              plugin.getListOfObjectives().clear();

              foreach (var constraint in Constraints)
              {
            var bound = plugin.createFluxBound();
            bound.setReaction(constraint.Id);
            bound.setOperation(ToFbcString(constraint.Operator));
            bound.setValue(constraint.Value);
              }

              var active = plugin.createObjective();
              active.setId("objective1");
              active.setType(Mode == FBA_Mode.maximize ? "maximize" : "minimize");

              foreach (var objective in Objectives)
              {
            var current = active.createFluxObjective();
            current.setReaction(objective.Id);
            current.setCoefficient(objective.Value);
              }

              plugin.setActiveObjectiveId("objective1");

              // convert to COBRA
              var props = new ConversionProperties();
              props.addOption("convert fbc to cobra", true, "Convert FBC model to Cobra model");
              if (doc.convert(props) != libsbml.LIBSBML_OPERATION_SUCCESS)
              {
            throw new Exception(doc.getErrorLog().toString());
              }

              model = doc.getModel();
              plugin = (FbcModelPlugin)model.getPlugin("fbc");
              if (plugin != null)
              {
            plugin.getListOfGeneProducts().clear();
            plugin.getListOfGeneAssociations().clear();
            plugin.getListOfFluxBounds().clear();
            plugin.getListOfObjectives().clear();
              }
              return libsbml.writeSBMLToString(doc);
        }
开发者ID:fbergmann,项目名称:FluxBalance,代码行数:63,代码来源:FluxBalance.cs


示例10: getDefaultProperties

 /**
    * Returns the default properties of this converter.
    *
    * A given converter exposes one or more properties that can be adjusted
    * in order to influence the behavior of the converter.  This method
    * returns the @em default property settings for this converter.  It is
    * meant to be called in order to discover all the settings for the
    * converter object.
    *
    * @return the ConversionProperties object describing the default properties
    * for this converter.
    */
 public new ConversionProperties getDefaultProperties()
 {
     ConversionProperties ret = new ConversionProperties(libsbmlPINVOKE.SBMLLevelVersionConverter_getDefaultProperties(swigCPtr), true);
     return ret;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:17,代码来源:SBMLLevelVersionConverter.cs


示例11: getCPtrAndDisown

        internal static HandleRef getCPtrAndDisown(ConversionProperties obj)
        {
            HandleRef ptr = new HandleRef(null, IntPtr.Zero);

            if (obj != null)
            {
            ptr             = obj.swigCPtr;
            obj.swigCMemOwn = false;
            }

            return ptr;
        }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:12,代码来源:ConversionProperties.cs


示例12: getConverterFor

 /**
    * Returns the converter that best matches the given configuration
    * properties.
    *
    * Many converters provide the ability to configure their behavior.  This
    * is realized through the use of @em properties that offer different @em
    * options.  The present method allows callers to search for converters
    * that have specific property values.  Callers can do this by creating a
    * ConversionProperties object, adding the desired option(s) to the
    * object, then passing the object to this method.
    *
    * @param props a ConversionProperties object defining the properties
    * to match against.
    *
    * @return the converter matching the properties, or @c null if no
    * suitable converter is found.
    *
    * @see getConverterByIndex(@if java int [email protected])
    */
 public SBMLConverter getConverterFor(ConversionProperties props)
 {
     IntPtr cPtr = libsbmlPINVOKE.SBMLConverterRegistry_getConverterFor(swigCPtr, ConversionProperties.getCPtr(props));
     SBMLConverter ret = (cPtr == IntPtr.Zero) ? null : new SBMLConverter(cPtr, false);
     if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:26,代码来源:SBMLConverterRegistry.cs


示例13: getDefaultProperties

 /**
    * Returns the default properties of this converter.
    *
    * A given converter exposes one or more properties that can be adjusted
    * in order to influence the behavior of the converter.  This method
    * returns the @em default property settings for this converter.  It is
    * meant to be called in order to discover all the settings for the
    * converter object.
    *
    * @return the ConversionProperties object describing the default properties
    * for this converter.
    */
 public ConversionProperties getDefaultProperties()
 {
     ConversionProperties ret = new ConversionProperties(libsbmlPINVOKE.SBMLFunctionDefinitionConverter_getDefaultProperties(swigCPtr), true);
     return ret;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:17,代码来源:SBMLFunctionDefinitionConverter.cs


示例14: WriteUsingFBC

        private string WriteUsingFBC(int version = 1)
        {
            var doc = libsbml.readSBMLFromString(SBML);
              var model = doc.getModel();
              if (doc.getLevel() < 3)
              {
            var properties = new ConversionProperties(new SBMLNamespaces(3, 1));
            properties.addOption("strict", false);
            properties.addOption("setLevelAndVersion", true);
            properties.addOption("ignorePackages", true);
            doc.convert(properties);
              }

              if (version == 1)
              {
            doc.enablePackage(FbcExtension.getXmlnsL3V1V2(), "fbc", false);
            doc.enablePackage(FbcExtension.getXmlnsL3V1V1(), "fbc", true);
              }
              else if (version == 2)
              {
            doc.enablePackage(FbcExtension.getXmlnsL3V1V1(), "fbc", false);
            doc.enablePackage(FbcExtension.getXmlnsL3V1V2(), "fbc", true);
              }

              doc.setPackageRequired("fbc", false);

              var plugin = (FbcModelPlugin)model.getPlugin("fbc");
              if (plugin == null)
              {

            throw new Exception("Could not save using Fbc. Please check that your model contains no errors!");
              }
              plugin.getListOfFluxBounds().clear();
              plugin.getListOfGeneAssociations().clear();
              plugin.getListOfObjectives().clear();
              plugin.getListOfGeneProducts().clear();

              if (version == 1)
              {
            plugin.unsetStrict();
            foreach (var constraint in Constraints)
            {
              var bound = plugin.createFluxBound();
              bound.setReaction(constraint.Id);
              bound.setOperation(ToFbcString(constraint.Operator));
              bound.setValue(constraint.Value);
            }
              }
              else
              {

            plugin.setStrict(false);

            foreach (var constraint in Constraints)
            {
              var reaction = model.getReaction(constraint.Id);
              if (reaction == null) continue;
              var rplug = (FbcReactionPlugin)reaction.getPlugin("fbc");
              if (rplug == null) continue;

              switch (constraint.Operator)
              {
            case lpsolve_constr_types.LE:
              {
                var param = model.createParameter();
                param.setId(string.Format("fb_{0}_ub", reaction.getId()));
                param.setConstant(true);
                param.setValue(constraint.Value);
                rplug.setUpperFluxBound(param.getId());
              }
              break;
            case lpsolve_constr_types.EQ:
              {
                var param = model.createParameter();
                param.setId(string.Format("fb_{0}_ub", reaction.getId()));
                param.setConstant(true);
                param.setValue(constraint.Value);
                rplug.setUpperFluxBound(param.getId());

                param = model.createParameter();
                param.setId(string.Format("fb_{0}_lb", reaction.getId()));
                param.setConstant(true);
                param.setValue(constraint.Value);
                rplug.setLowerFluxBound(param.getId());
              }
              break;
            case lpsolve_constr_types.GE:
              {
                var param = model.createParameter();
                param.setId(string.Format("fb_{0}_lb", reaction.getId()));
                param.setConstant(true);
                param.setValue(constraint.Value);
                rplug.setLowerFluxBound(param.getId());
              }
              break;
            default:
              break;
              }

            }
//.........这里部分代码省略.........
开发者ID:fbergmann,项目名称:FluxBalance,代码行数:101,代码来源:FluxBalance.cs


示例15: InitializeFromCobraAnnotation

        private void InitializeFromCobraAnnotation(string sbmlContent)
        {
            try
              {
            var doc = libsbml.readSBMLFromString(sbmlContent);
            var props = new ConversionProperties();
            props.addOption("convert cobra", true, "");
            if (doc.convert(props) != libsbml.LIBSBML_OPERATION_SUCCESS)
              return;
            InitializeFromSBMLDocument(doc);
              }
              catch
              {

              }
        }
开发者ID:fbergmann,项目名称:FluxBalance,代码行数:16,代码来源:FluxBalance.cs


示例16: ConversionProperties

 /**
    * Copy constructor.
    *
    * @param orig the object to copy.
    */
 public ConversionProperties(ConversionProperties orig)
     : this(libsbmlPINVOKE.new_ConversionProperties__SWIG_2(ConversionProperties.getCPtr(orig)), true)
 {
     if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve();
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:10,代码来源:ConversionProperties.cs


示例17: getCPtr

 internal static HandleRef getCPtr(ConversionProperties obj)
 {
     return (obj == null) ? new HandleRef(null, IntPtr.Zero) : obj.swigCPtr;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:4,代码来源:ConversionProperties.cs


示例18: getDefaultProperties

 /**
    * Returns the default properties of this converter.
    *
    * A given converter exposes one or more properties that can be adjusted
    * in order to influence the behavior of the converter.  This method
    * returns the @em default property settings for this converter.  It is
    * meant to be called in order to discover all the settings for the
    * converter object.
    *
    * @return the ConversionProperties object describing the default properties
    * for this converter.
    */
 public ConversionProperties getDefaultProperties()
 {
     ConversionProperties ret = new ConversionProperties(libsbmlPINVOKE.SBMLStripPackageConverter_getDefaultProperties(swigCPtr), true);
     return ret;
 }
开发者ID:0u812,项目名称:roadrunner-backup,代码行数:17,代码来源:SBMLStripPackageConverter.cs


示例19: getConverterFor

 /**
    * Returns the converter that best matches the given configuration
    * properties.
    *
    * Many converters provide the ability to configure their behavior.  This
    * is realized through the use of @em properties that offer different @em
    * options.  The present method allows callers to search for converters
    * that have specific property values.  Callers can do this by creating a
    * ConversionProperties object, adding the desired option(s) to the
    * object, then passing the object to this method.
    *
    * @param props a ConversionProperties object defining the properties
    * to match against.
    *
    * @return the converter matching the properties, or @c null if no
    * suitable converter is found.
    *
    * @see getConverterByIndex(@if java [email protected])
    */
 public SBMLConverter getConverterFor(ConversionProperties props)
 {
     SBMLConverter ret
     = (SBMLConverter) libsbml.DowncastSBMLConverter(libsbmlPINVOKE.SBMLConverterRegistry_getConverterFor(swigCPtr, ConversionProperties.getCPtr(props)), false);
     if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:kirichoi,项目名称:roadrunner,代码行数:26,代码来源:SBMLConverterRegistry.cs


示例20: convert

 /**
    * Converts this document using the converter that best matches
    * the given conversion properties.
    *
    * @param props the conversion properties to use
    *
    *
  * @return integer value indicating success/failure of the
  * function.  @if clike The value is drawn from the
  * enumeration #OperationReturnValues_t. @endif The possible values
  * returned by this function are:
  * @li @link libsbml#LIBSBML_OPERATION_SUCCESS [email protected]
    * @li @link libsbml#LIBSBML_OPERATION_FAILED [email protected]
    * @li @link libsbml#LIBSBML_CONV_CONVERSION_NOT_AVAILABLE [email protected]
    */
 public new int convert(ConversionProperties props)
 {
     int ret = libsbmlPINVOKE.SBMLDocument_convert(swigCPtr, ConversionProperties.getCPtr(props));
     if (libsbmlPINVOKE.SWIGPendingException.Pending) throw libsbmlPINVOKE.SWIGPendingException.Retrieve();
     return ret;
 }
开发者ID:sys-bio,项目名称:libroadrunner-deps,代码行数:21,代码来源:SBMLDocument.cs



注:本文中的libsbmlcs.ConversionProperties类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# libsbmlcs.Event类代码示例发布时间:2022-05-26
下一篇:
C# libsbmlcs.ASTNode类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap